Package owl.ltl.rewriter
Enum SimplifierRepository
- java.lang.Object
-
- java.lang.Enum<SimplifierRepository>
-
- owl.ltl.rewriter.SimplifierRepository
-
- All Implemented Interfaces:
Serializable
,Comparable<SimplifierRepository>
public enum SimplifierRepository extends Enum<SimplifierRepository>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description NNF
PULL_UP_X
PUSH_DOWN_X
SYNTACTIC
SYNTACTIC_FAIRNESS
SYNTACTIC_FIXPOINT
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Formula
apply(Formula formula)
LabelledFormula
apply(LabelledFormula formula)
static SimplifierRepository
valueOf(String name)
Returns the enum constant of this type with the specified name.static SimplifierRepository[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SYNTACTIC
public static final SimplifierRepository SYNTACTIC
-
SYNTACTIC_FAIRNESS
public static final SimplifierRepository SYNTACTIC_FAIRNESS
-
SYNTACTIC_FIXPOINT
public static final SimplifierRepository SYNTACTIC_FIXPOINT
-
PULL_UP_X
public static final SimplifierRepository PULL_UP_X
-
PUSH_DOWN_X
public static final SimplifierRepository PUSH_DOWN_X
-
NNF
public static final SimplifierRepository NNF
-
-
Method Detail
-
values
public static SimplifierRepository[] 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 (SimplifierRepository c : SimplifierRepository.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SimplifierRepository 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
-
apply
public LabelledFormula apply(LabelledFormula formula)
-
-