Package com.esri.arcgisruntime.mapping
Enum ArcGISScene.SceneViewTilingScheme
- java.lang.Object
-
- java.lang.Enum<ArcGISScene.SceneViewTilingScheme>
-
- com.esri.arcgisruntime.mapping.ArcGISScene.SceneViewTilingScheme
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<ArcGISScene.SceneViewTilingScheme>
- Enclosing class:
- ArcGISScene
public static enum ArcGISScene.SceneViewTilingScheme extends java.lang.Enum<ArcGISScene.SceneViewTilingScheme>
Defines types of tiling scheme used for tiled layers.- Since:
- 100.2.1
-
-
Enum Constant Summary
Enum Constants Enum Constant Description GEOGRAPHIC
Use a geographic tiling scheme for the tiled layers.WEB_MERCATOR
Use a web Mercator tiling scheme for tiled layers.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ArcGISScene.SceneViewTilingScheme
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ArcGISScene.SceneViewTilingScheme[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
GEOGRAPHIC
public static final ArcGISScene.SceneViewTilingScheme GEOGRAPHIC
Use a geographic tiling scheme for the tiled layers.- Since:
- 100.2.1
-
WEB_MERCATOR
public static final ArcGISScene.SceneViewTilingScheme WEB_MERCATOR
Use a web Mercator tiling scheme for tiled layers.- Since:
- 100.2.1
-
-
Method Detail
-
values
public static ArcGISScene.SceneViewTilingScheme[] 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 (ArcGISScene.SceneViewTilingScheme c : ArcGISScene.SceneViewTilingScheme.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ArcGISScene.SceneViewTilingScheme 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
-
-