Package org.netxms.client.maps
Enum MapObjectDisplayMode
- java.lang.Object
-
- java.lang.Enum<MapObjectDisplayMode>
-
- org.netxms.client.maps.MapObjectDisplayMode
-
- All Implemented Interfaces:
Serializable,Comparable<MapObjectDisplayMode>
public enum MapObjectDisplayMode extends Enum<MapObjectDisplayMode>
Map object display mode
-
-
Enum Constant Summary
Enum Constants Enum Constant Description FLOOR_PLANICONLARGE_LABELSMALL_LABELSTATUS
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static MapObjectDisplayModegetByValue(int value)intgetValue()static MapObjectDisplayModevalueOf(String name)Returns the enum constant of this type with the specified name.static MapObjectDisplayMode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ICON
public static final MapObjectDisplayMode ICON
-
SMALL_LABEL
public static final MapObjectDisplayMode SMALL_LABEL
-
LARGE_LABEL
public static final MapObjectDisplayMode LARGE_LABEL
-
STATUS
public static final MapObjectDisplayMode STATUS
-
FLOOR_PLAN
public static final MapObjectDisplayMode FLOOR_PLAN
-
-
Method Detail
-
values
public static MapObjectDisplayMode[] 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 (MapObjectDisplayMode c : MapObjectDisplayMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MapObjectDisplayMode valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
getValue
public int getValue()
-
getByValue
public static MapObjectDisplayMode getByValue(int value)
-
-