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