public static enum Todo.Version extends Enum<Todo.Version>
Todo
is scheduled to be implementedEnum Constant and Description |
---|
VERSION_1_1_0 |
VERSION_1_1_1 |
VERSION_1_1_2 |
VERSION_1_1_3 |
Modifier and Type | Method and Description |
---|---|
static Todo.Version |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Todo.Version[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Todo.Version VERSION_1_1_0
public static final Todo.Version VERSION_1_1_1
public static final Todo.Version VERSION_1_1_2
public static final Todo.Version VERSION_1_1_3
public static Todo.Version[] values()
for (Todo.Version c : Todo.Version.values()) System.out.println(c);
public static Todo.Version 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