Enum BuchiSimulation.SimulationType
- java.lang.Object
-
- java.lang.Enum<BuchiSimulation.SimulationType>
-
- owl.automaton.algorithm.simulations.BuchiSimulation.SimulationType
-
- All Implemented Interfaces:
Serializable
,Comparable<BuchiSimulation.SimulationType>
- Enclosing class:
- BuchiSimulation
public static enum BuchiSimulation.SimulationType extends Enum<BuchiSimulation.SimulationType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BACKWARD_SIMULATION
DELAYED_SIMULATION
DIRECT_SIMULATION
DIRECT_SIMULATION_COLOUR_REFINEMENT
FAIR_SIMULATION
LOOKAHEAD_DIRECT_SIMULATION
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static BuchiSimulation.SimulationType
valueOf(String name)
Returns the enum constant of this type with the specified name.static BuchiSimulation.SimulationType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DIRECT_SIMULATION_COLOUR_REFINEMENT
public static final BuchiSimulation.SimulationType DIRECT_SIMULATION_COLOUR_REFINEMENT
-
DIRECT_SIMULATION
public static final BuchiSimulation.SimulationType DIRECT_SIMULATION
-
DELAYED_SIMULATION
public static final BuchiSimulation.SimulationType DELAYED_SIMULATION
-
FAIR_SIMULATION
public static final BuchiSimulation.SimulationType FAIR_SIMULATION
-
BACKWARD_SIMULATION
public static final BuchiSimulation.SimulationType BACKWARD_SIMULATION
-
LOOKAHEAD_DIRECT_SIMULATION
public static final BuchiSimulation.SimulationType LOOKAHEAD_DIRECT_SIMULATION
-
-
Method Detail
-
values
public static BuchiSimulation.SimulationType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (BuchiSimulation.SimulationType c : BuchiSimulation.SimulationType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BuchiSimulation.SimulationType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-