public static enum LevelPickerControl.PickerStyle extends java.lang.Enum<LevelPickerControl.PickerStyle>
| Enum Constant and Description |
|---|
PICKER_FLOOR_LIST
Simplified style designed to show a list of numbered floors for a single building.
|
PICKER_SEARCH
Map picker style that allows for searching across multiple buildings.
|
| Modifier and Type | Method and Description |
|---|---|
static LevelPickerControl.PickerStyle |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LevelPickerControl.PickerStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LevelPickerControl.PickerStyle PICKER_SEARCH
public static final LevelPickerControl.PickerStyle PICKER_FLOOR_LIST
public static LevelPickerControl.PickerStyle[] values()
for (LevelPickerControl.PickerStyle c : LevelPickerControl.PickerStyle.values()) System.out.println(c);
public static LevelPickerControl.PickerStyle valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null