public static enum ToDo.Kind extends Enum<ToDo.Kind>
| Enum Constant and Description |
|---|
CODE
Code needs modification.
|
CODE_AND_DOCS
Both code and documentation are needed
|
DOCS
Documentation needed, javadoc or other forms
|
| Modifier and Type | Method and Description |
|---|---|
static ToDo.Kind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ToDo.Kind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ToDo.Kind CODE
public static final ToDo.Kind DOCS
public static final ToDo.Kind CODE_AND_DOCS
public static ToDo.Kind[] values()
for (ToDo.Kind c : ToDo.Kind.values()) System.out.println(c);
public static ToDo.Kind 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 © 2017–2020 Eclipse Foundation. All rights reserved.