Package owl.automaton
Enum Automaton.Property
- java.lang.Object
-
- java.lang.Enum<Automaton.Property>
-
- owl.automaton.Automaton.Property
-
- All Implemented Interfaces:
Serializable
,Comparable<Automaton.Property>
- Enclosing interface:
- Automaton<S,A extends OmegaAcceptance>
public static enum Automaton.Property extends Enum<Automaton.Property>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description COMPLETE
DETERMINISTIC
LIMIT_DETERMINISTIC
SEMI_DETERMINISTIC
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Automaton.Property
valueOf(String name)
Returns the enum constant of this type with the specified name.static Automaton.Property[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
COMPLETE
public static final Automaton.Property COMPLETE
-
DETERMINISTIC
public static final Automaton.Property DETERMINISTIC
-
SEMI_DETERMINISTIC
public static final Automaton.Property SEMI_DETERMINISTIC
-
LIMIT_DETERMINISTIC
public static final Automaton.Property LIMIT_DETERMINISTIC
-
-
Method Detail
-
values
public static Automaton.Property[] 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 (Automaton.Property c : Automaton.Property.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Automaton.Property 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
-
-