public enum EEventState extends Enum<EEventState>
| Enum Constant and Description |
|---|
MARRIAGE_UNDER_CONSIDERATION
A marriage broker anounced his services and the marriage offer is not declined.
|
| Modifier and Type | Method and Description |
|---|---|
static EEventState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EEventState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EEventState MARRIAGE_UNDER_CONSIDERATION
public static EEventState[] values()
for (EEventState c : EEventState.values()) System.out.println(c);
public static EEventState 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 nullCopyright © 2011-2017 Sahits GmbH. All Rights Reserved.