public enum State extends Enum<State>
| Enum Constant and Description |
|---|
deBB |
deBE |
deBW |
deBY |
deHB |
deHE |
deHH |
deMV |
deNI |
deNW |
deRP |
deSH |
deSL |
deSN |
deST |
deTH |
| Modifier and Type | Method and Description |
|---|---|
static State |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final State deBB
public static final State deBE
public static final State deBW
public static final State deBY
public static final State deHB
public static final State deHE
public static final State deHH
public static final State deMV
public static final State deNI
public static final State deNW
public static final State deRP
public static final State deSH
public static final State deSL
public static final State deSN
public static final State deST
public static final State deTH
public static State[] values()
for (State c : State.values()) System.out.println(c);
public static State 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 nullCopyright © 2017. All rights reserved.