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