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