Package com.esri.arcgisruntime.mapping
Enum Viewpoint.Type
- java.lang.Object
-
- java.lang.Enum<Viewpoint.Type>
-
- com.esri.arcgisruntime.mapping.Viewpoint.Type
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<Viewpoint.Type>
- Enclosing class:
- Viewpoint
public static enum Viewpoint.Type extends java.lang.Enum<Viewpoint.Type>
The different types ofViewpoint
. Each of different supported viewpoint types. Can get the type by calling Type.- Since:
- 100.0.0
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BOUNDING_GEOMETRY
A visible area.CENTER_AND_SCALE
A center point and scale.UNKNOWN
Deprecated.as of 100.12.0.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Viewpoint.Type
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Viewpoint.Type[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CENTER_AND_SCALE
public static final Viewpoint.Type CENTER_AND_SCALE
A center point and scale.- Since:
- 100.0.0
-
BOUNDING_GEOMETRY
public static final Viewpoint.Type BOUNDING_GEOMETRY
A visible area.- Since:
- 100.0.0
-
UNKNOWN
@Deprecated public static final Viewpoint.Type UNKNOWN
Deprecated.as of 100.12.0. TheViewpoint.getType()
always returns a known value. When aViewpoint
is unavailable, null is returned.Unknown.- Since:
- 100.9.0
- See Also:
GeoView.getCurrentViewpoint(Type)
,Bookmark.getViewpoint()
,GeoModel.getInitialViewpoint()
,MosaicRule.getViewpoint()
-
-
Method Detail
-
values
public static Viewpoint.Type[] 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 (Viewpoint.Type c : Viewpoint.Type.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Viewpoint.Type 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
-
-