Enum MapMarker3DModel.InstantiationErrorCode
Package com.here.sdk.mapview
Enum MapMarker3DModel.InstantiationErrorCode
- java.lang.Object
-
- java.lang.Enum<MapMarker3DModel.InstantiationErrorCode>
-
- com.here.sdk.mapview.MapMarker3DModel.InstantiationErrorCode
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<MapMarker3DModel.InstantiationErrorCode>
- Enclosing class:
- MapMarker3DModel
public static enum MapMarker3DModel.InstantiationErrorCode extends java.lang.Enum<MapMarker3DModel.InstantiationErrorCode>
Indicates the reason for a failure to create
MapMarker3DModel.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description MISSING_TEXTURE_COORDINATESThe providedMeshdoes not contain texture coordinates.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static MapMarker3DModel.InstantiationErrorCodevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static MapMarker3DModel.InstantiationErrorCode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MISSING_TEXTURE_COORDINATES
public static final MapMarker3DModel.InstantiationErrorCode MISSING_TEXTURE_COORDINATES
The provided
Meshdoes not contain texture coordinates.
-
-
Method Detail
-
values
public static MapMarker3DModel.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 (MapMarker3DModel.InstantiationErrorCode c : MapMarker3DModel.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 MapMarker3DModel.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
-
-