public enum FlagStatus extends java.lang.Enum<FlagStatus>
| Enum Constant and Description |
|---|
COMPLETE
Indicates the complete flag status.
|
MARKED
Indicates the flagged status.
|
NONE
Indicates the not-flagged status.
|
| Modifier and Type | Method and Description |
|---|---|
static FlagStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FlagStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FlagStatus NONE
public static final FlagStatus COMPLETE
public static final FlagStatus MARKED
public static FlagStatus[] values()
for (FlagStatus c : FlagStatus.values()) System.out.println(c);
public static FlagStatus 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