public static enum Efsm.TransitionWeightBasis extends java.lang.Enum<Efsm.TransitionWeightBasis>
Enum Constant and Description |
---|
CONSTANT
All transitions are considered as having one and the same weight
|
GUARD_REGISTER_AMOUNT
A transition's weight is equal to amount of registers used in the transition's guard
|
Modifier and Type | Method and Description |
---|---|
static Efsm.TransitionWeightBasis |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Efsm.TransitionWeightBasis[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Efsm.TransitionWeightBasis CONSTANT
public static final Efsm.TransitionWeightBasis GUARD_REGISTER_AMOUNT
public static Efsm.TransitionWeightBasis[] values()
for (Efsm.TransitionWeightBasis c : Efsm.TransitionWeightBasis.values()) System.out.println(c);
public static Efsm.TransitionWeightBasis valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null