public enum InputTransitionEffect extends Enum<InputTransitionEffect>
Input
Transition within the system. The possible values are none and consumption.| Enum Constant and Description |
|---|
consumption
The level of the
QualitativeSpecies is decreased by the resultLevel
of the selected term possibly modified by the thresholdLevel of the
Input. |
none
Neither the level nor the symbol associated to the
QualitativeSpecies is modified. |
| Modifier and Type | Method and Description |
|---|---|
static InputTransitionEffect |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InputTransitionEffect[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InputTransitionEffect consumption
QualitativeSpecies is decreased by the resultLevel
of the selected term possibly modified by the thresholdLevel of the
Input.public static final InputTransitionEffect none
QualitativeSpecies is modified.public static InputTransitionEffect[] values()
for (InputTransitionEffect c : InputTransitionEffect.values()) System.out.println(c);
public static InputTransitionEffect 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 © 2009–2017. All rights reserved.