Enum MapItemKeyFrameTrack.InstantiationErrorCode
Package com.here.sdk.animation
Enum MapItemKeyFrameTrack.InstantiationErrorCode
- java.lang.Object
-
- java.lang.Enum<MapItemKeyFrameTrack.InstantiationErrorCode>
-
- com.here.sdk.animation.MapItemKeyFrameTrack.InstantiationErrorCode
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<MapItemKeyFrameTrack.InstantiationErrorCode>
- Enclosing class:
- MapItemKeyFrameTrack
public static enum MapItemKeyFrameTrack.InstantiationErrorCode extends java.lang.Enum<MapItemKeyFrameTrack.InstantiationErrorCode>
Describes a reason for failing to create a
MapItemKeyFrameTrack.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description EMPTY_KEYFRAME_LISTList of keyframes is empty.INVALID_KEYFRAME_DURATIONDuration of first keyframe is not 0, which is invalid.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static MapItemKeyFrameTrack.InstantiationErrorCodevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static MapItemKeyFrameTrack.InstantiationErrorCode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EMPTY_KEYFRAME_LIST
public static final MapItemKeyFrameTrack.InstantiationErrorCode EMPTY_KEYFRAME_LIST
List of keyframes is empty.
-
INVALID_KEYFRAME_DURATION
public static final MapItemKeyFrameTrack.InstantiationErrorCode INVALID_KEYFRAME_DURATION
Duration of first keyframe is not 0, which is invalid.
-
-
Method Detail
-
values
public static MapItemKeyFrameTrack.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 (MapItemKeyFrameTrack.InstantiationErrorCode c : MapItemKeyFrameTrack.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 MapItemKeyFrameTrack.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
-
-