Enum MapContentCategory
Package com.here.sdk.mapview
Enum MapContentCategory
- java.lang.Object
-
- java.lang.Enum<MapContentCategory>
-
- com.here.sdk.mapview.MapContentCategory
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<MapContentCategory>
public enum MapContentCategory extends java.lang.Enum<MapContentCategory>
Type representing map content categories.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description VEHICLE_RESTRICTION_ICONSVehicle restriction icons
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static MapContentCategoryvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static MapContentCategory[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
VEHICLE_RESTRICTION_ICONS
public static final MapContentCategory VEHICLE_RESTRICTION_ICONS
Vehicle restriction icons
-
-
Method Detail
-
values
public static MapContentCategory[] 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 (MapContentCategory c : MapContentCategory.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MapContentCategory 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
-
-