public static enum RoutineCharacteristics.Determinism extends Enum<RoutineCharacteristics.Determinism>
| Enum Constant and Description |
|---|
DETERMINISTIC |
NOT_DETERMINISTIC |
| Modifier and Type | Method and Description |
|---|---|
static RoutineCharacteristics.Determinism |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RoutineCharacteristics.Determinism[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RoutineCharacteristics.Determinism DETERMINISTIC
public static final RoutineCharacteristics.Determinism NOT_DETERMINISTIC
public static RoutineCharacteristics.Determinism[] values()
for (RoutineCharacteristics.Determinism c : RoutineCharacteristics.Determinism.values()) System.out.println(c);
public static RoutineCharacteristics.Determinism 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 © 2012–2022. All rights reserved.