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