public enum LevelType extends Enum<LevelType>
Java class for LevelType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="LevelType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="B"/>
<enumeration value="FL"/>
<enumeration value="G"/>
<enumeration value="L"/>
<enumeration value="LG"/>
<enumeration value="M"/>
<enumeration value="OD"/>
<enumeration value="P"/>
<enumeration value="PTHS"/>
<enumeration value="PLF"/>
<enumeration value="PLZA"/>
<enumeration value="PDM"/>
<enumeration value="RT"/>
<enumeration value="SB"/>
<enumeration value="UG"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
B
Basement
|
FL
Floor
|
G
Ground
|
L
Level
|
LG
Lower Ground
|
M
Mezzanine
|
OD
Observation Deck
|
P
Parking
|
PDM
Podium
|
PLF
Platform
|
PLZA
Plaza
|
PTHS
Penthouse
|
RT
Rooftop
|
SB
Sub Basement
|
UG
Upper Ground
|
| Modifier and Type | Method and Description |
|---|---|
static LevelType |
fromValue(String v) |
String |
value() |
static LevelType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LevelType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LevelType B
public static final LevelType FL
public static final LevelType G
public static final LevelType L
public static final LevelType LG
public static final LevelType M
public static final LevelType OD
public static final LevelType P
public static final LevelType PTHS
public static final LevelType PLF
public static final LevelType PLZA
public static final LevelType PDM
public static final LevelType RT
public static final LevelType SB
public static final LevelType UG
public static LevelType[] values()
for (LevelType c : LevelType.values()) System.out.println(c);
public static LevelType 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 String value()
Copyright © 2021. All rights reserved.