public enum Bauphase extends Enum<Bauphase>
| Enum Constant and Description |
|---|
FERTIG_GESTELLT |
IM_BAU |
IN_PLANUNG |
KEINE_ANGABE |
| Modifier and Type | Method and Description |
|---|---|
static Bauphase |
parse(String value) |
String |
print() |
static Bauphase |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Bauphase[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Bauphase KEINE_ANGABE
public static final Bauphase IN_PLANUNG
public static final Bauphase IM_BAU
public static final Bauphase FERTIG_GESTELLT
public static Bauphase[] values()
for (Bauphase c : Bauphase.values()) System.out.println(c);
public static Bauphase 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.