public static enum Flags.EventType extends java.lang.Enum<Flags.EventType>
| Enum Constant and Description |
|---|
PERIODICAL |
SINGLE |
| Modifier and Type | Method and Description |
|---|---|
static Flags.EventType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Flags.EventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Flags.EventType PERIODICAL
public static final Flags.EventType SINGLE
public static Flags.EventType[] values()
for (Flags.EventType c : Flags.EventType.values()) System.out.println(c);
public static Flags.EventType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null