public static enum ActionChoice.Kind extends Enum<ActionChoice.Kind>
| Enum Constant and Description |
|---|
NEXT_DAY
Try seeing if we can skip to the next day, to see if the filter passes.
|
PREVIOUS_DAY
Try seeing if we can skip to the previous day, to see if the filter passes.
|
SKIP
Give up.
|
| Modifier and Type | Method and Description |
|---|---|
static ActionChoice.Kind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ActionChoice.Kind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ActionChoice.Kind PREVIOUS_DAY
public static final ActionChoice.Kind NEXT_DAY
public static final ActionChoice.Kind SKIP
public static ActionChoice.Kind[] values()
for (ActionChoice.Kind c : ActionChoice.Kind.values()) System.out.println(c);
public static ActionChoice.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. All rights reserved.