public static enum NoteComment.Action extends Enum<NoteComment.Action>
Modifier and Type | Method and Description |
---|---|
static NoteComment.Action |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NoteComment.Action[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NoteComment.Action opened
public static final NoteComment.Action closed
public static final NoteComment.Action reopened
public static final NoteComment.Action commented
public static NoteComment.Action[] values()
for (NoteComment.Action c : NoteComment.Action.values()) System.out.println(c);
public static NoteComment.Action 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 null