Module com.esri.arcgisruntime
Enum Class LocationToScreenResult.SceneLocationVisibility
java.lang.Object
java.lang.Enum<LocationToScreenResult.SceneLocationVisibility>
com.esri.arcgisruntime.mapping.view.LocationToScreenResult.SceneLocationVisibility
- All Implemented Interfaces:
Serializable
,Comparable<LocationToScreenResult.SceneLocationVisibility>
,Constable
- Enclosing class:
LocationToScreenResult
public static enum LocationToScreenResult.SceneLocationVisibility
extends Enum<LocationToScreenResult.SceneLocationVisibility>
Modes of visibility that can occur in a
LocationToScreenResult
.- Since:
- 100.0.0
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionLocation is hidden by the base surface.Location is on far side of the Earth.Location is hidden by elevation, for example behind a mountain.Location is not on any part of the globe visible on the screen.Location is visible on screen. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
VISIBLE
Location is visible on screen.- Since:
- 100.0.0
-
HIDDEN_BY_BASE_SURFACE
Location is hidden by the base surface.- Since:
- 100.0.0
-
HIDDEN_BY_EARTH
Location is on far side of the Earth.- Since:
- 100.0.0
-
HIDDEN_BY_ELEVATION
Location is hidden by elevation, for example behind a mountain.- Since:
- 100.0.0
-
NOT_ON_SCREEN
Location is not on any part of the globe visible on the screen.- Since:
- 100.0.0
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-