Enum MapCameraUpdate.InstantiationErrorCode
Package com.here.sdk.mapview
Enum MapCameraUpdate.InstantiationErrorCode
- java.lang.Object
-
- java.lang.Enum<MapCameraUpdate.InstantiationErrorCode>
-
- com.here.sdk.mapview.MapCameraUpdate.InstantiationErrorCode
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<MapCameraUpdate.InstantiationErrorCode>
- Enclosing class:
- MapCameraUpdate
public static enum MapCameraUpdate.InstantiationErrorCode extends java.lang.Enum<MapCameraUpdate.InstantiationErrorCode>
Describes a reason for failing to create a
MapCameraUpdate.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description EMPTY_COMPOSITE_CAMERA_UPDATE_LISTList of camera updates that should form a composite camera update is empty.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static MapCameraUpdate.InstantiationErrorCodevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static MapCameraUpdate.InstantiationErrorCode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EMPTY_COMPOSITE_CAMERA_UPDATE_LIST
public static final MapCameraUpdate.InstantiationErrorCode EMPTY_COMPOSITE_CAMERA_UPDATE_LIST
List of camera updates that should form a composite camera update is empty.
-
-
Method Detail
-
values
public static MapCameraUpdate.InstantiationErrorCode[] 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 (MapCameraUpdate.InstantiationErrorCode c : MapCameraUpdate.InstantiationErrorCode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MapCameraUpdate.InstantiationErrorCode 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
-
-