public static enum Operation.ControlEnum extends Enum<Operation.ControlEnum>
| Enum Constant and Description |
|---|
NO_REPEAT |
PAUSE_SEQUENCE |
REPEAT |
STOP_SEQUENCE |
| Modifier and Type | Method and Description |
|---|---|
static Operation.ControlEnum |
fromValue(String text) |
String |
toString() |
static Operation.ControlEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Operation.ControlEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Operation.ControlEnum REPEAT
public static final Operation.ControlEnum NO_REPEAT
public static final Operation.ControlEnum PAUSE_SEQUENCE
public static final Operation.ControlEnum STOP_SEQUENCE
public static Operation.ControlEnum[] values()
for (Operation.ControlEnum c : Operation.ControlEnum.values()) System.out.println(c);
public static Operation.ControlEnum 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 nullpublic String toString()
toString in class Enum<Operation.ControlEnum>public static Operation.ControlEnum fromValue(String text)
Copyright © 2017 WSO2. All rights reserved.