Enum LocationToScreenResult.SceneLocationVisibility
- java.lang.Object
-
- java.lang.Enum<LocationToScreenResult.SceneLocationVisibility>
-
- com.esri.arcgisruntime.mapping.view.LocationToScreenResult.SceneLocationVisibility
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<LocationToScreenResult.SceneLocationVisibility>
- Enclosing class:
- LocationToScreenResult
public static enum LocationToScreenResult.SceneLocationVisibility extends java.lang.Enum<LocationToScreenResult.SceneLocationVisibility>
Modes of visibility that can occur in a LocationToScreenResult.- Since:
- 100.1.0
-
-
Enum Constant Summary
Enum Constants Enum Constant Description HIDDEN_BY_BASE_SURFACE
Location is hidden by the base surface.HIDDEN_BY_EARTH
Location is on far side of the Earth.HIDDEN_BY_ELEVATION
Location is hidden by elevation, for example behind a mountain.NOT_ON_SCREEN
Location is not on any part of the globe visible on the screen.VISIBLE
Location is visible on screen.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static LocationToScreenResult.SceneLocationVisibility
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static LocationToScreenResult.SceneLocationVisibility[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
VISIBLE
public static final LocationToScreenResult.SceneLocationVisibility VISIBLE
Location is visible on screen.- Since:
- 100.1.0
-
HIDDEN_BY_BASE_SURFACE
public static final LocationToScreenResult.SceneLocationVisibility HIDDEN_BY_BASE_SURFACE
Location is hidden by the base surface.- Since:
- 100.1.0
-
HIDDEN_BY_EARTH
public static final LocationToScreenResult.SceneLocationVisibility HIDDEN_BY_EARTH
Location is on far side of the Earth.- Since:
- 100.1.0
-
HIDDEN_BY_ELEVATION
public static final LocationToScreenResult.SceneLocationVisibility HIDDEN_BY_ELEVATION
Location is hidden by elevation, for example behind a mountain.- Since:
- 100.1.0
-
NOT_ON_SCREEN
public static final LocationToScreenResult.SceneLocationVisibility NOT_ON_SCREEN
Location is not on any part of the globe visible on the screen.- Since:
- 100.1.0
-
-
Method Detail
-
values
public static LocationToScreenResult.SceneLocationVisibility[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (LocationToScreenResult.SceneLocationVisibility c : LocationToScreenResult.SceneLocationVisibility.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static LocationToScreenResult.SceneLocationVisibility valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-