public enum Lage extends Enum<Lage>
| Enum Constant and Description |
|---|
A_LAGE |
B_LAGE |
EINKAUFSZENTRUM |
KEINE_ANGABE |
| Modifier and Type | Method and Description |
|---|---|
static Lage |
parse(String value) |
String |
print() |
static Lage |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Lage[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Lage KEINE_ANGABE
public static final Lage A_LAGE
public static final Lage B_LAGE
public static final Lage EINKAUFSZENTRUM
public static Lage[] values()
for (Lage c : Lage.values()) System.out.println(c);
public static Lage 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 print()
Copyright © 2016 OpenEstate. All rights reserved.