public enum ZoneDisplayMode extends Enum<ZoneDisplayMode> implements HasName
| Enum Constant and Description |
|---|
ALL
Always show zones on the map.
|
DEFAULT
Use Zone's "displayed" property to determine whether to show the zone on the map.
|
NONE
Do not show zones on the map.
|
UNKNOWN
Fallback when enumeration value is unknown.
|
| Modifier and Type | Method and Description |
|---|---|
int |
getCode() |
String |
getName() |
static ZoneDisplayMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ZoneDisplayMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ZoneDisplayMode UNKNOWN
public static final ZoneDisplayMode NONE
public static final ZoneDisplayMode ALL
public static final ZoneDisplayMode DEFAULT
public static ZoneDisplayMode[] values()
for (ZoneDisplayMode c : ZoneDisplayMode.values()) System.out.println(c);
public static ZoneDisplayMode valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic int getCode()
Copyright © 2023. All rights reserved.