Enum MapMeasureDependentRenderSize.InstantiationErrorCode
Package com.here.sdk.mapview
Enum MapMeasureDependentRenderSize.InstantiationErrorCode
- java.lang.Object
-
- java.lang.Enum<MapMeasureDependentRenderSize.InstantiationErrorCode>
-
- com.here.sdk.mapview.MapMeasureDependentRenderSize.InstantiationErrorCode
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<MapMeasureDependentRenderSize.InstantiationErrorCode>
- Enclosing class:
- MapMeasureDependentRenderSize
public static enum MapMeasureDependentRenderSize.InstantiationErrorCode extends java.lang.Enum<MapMeasureDependentRenderSize.InstantiationErrorCode>
Describes a reason for failing to create a
MapMeasureDependentRenderSize.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description EMPTY_SIZESsizesdictionary is emptyNEGATIVE_MAP_MEASURENegative map measure insizesdictionaryNEGATIVE_SIZENegative size in insizesdictionary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static MapMeasureDependentRenderSize.InstantiationErrorCodevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static MapMeasureDependentRenderSize.InstantiationErrorCode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EMPTY_SIZES
public static final MapMeasureDependentRenderSize.InstantiationErrorCode EMPTY_SIZES
sizesdictionary is empty
-
NEGATIVE_MAP_MEASURE
public static final MapMeasureDependentRenderSize.InstantiationErrorCode NEGATIVE_MAP_MEASURE
Negative map measure in
sizesdictionary
-
NEGATIVE_SIZE
public static final MapMeasureDependentRenderSize.InstantiationErrorCode NEGATIVE_SIZE
Negative size in in
sizesdictionary
-
-
Method Detail
-
values
public static MapMeasureDependentRenderSize.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 (MapMeasureDependentRenderSize.InstantiationErrorCode c : MapMeasureDependentRenderSize.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 MapMeasureDependentRenderSize.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
-
-