public static enum TodoView.Scope extends java.lang.Enum<TodoView.Scope>
| Enum Constant and Description |
|---|
AllTodos |
ChangeList |
CurrentFile |
ScopeBased |
| Modifier and Type | Method and Description |
|---|---|
static TodoView.Scope |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TodoView.Scope[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TodoView.Scope AllTodos
public static final TodoView.Scope ChangeList
public static final TodoView.Scope CurrentFile
public static final TodoView.Scope ScopeBased
public static TodoView.Scope[] values()
for (TodoView.Scope c : TodoView.Scope.values()) System.out.println(c);
public static TodoView.Scope 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