Package owl.translations
Enum LtlTranslationRepository.LtlToDraTranslation
- java.lang.Object
-
- java.lang.Enum<LtlTranslationRepository.LtlToDraTranslation>
-
- owl.translations.LtlTranslationRepository.LtlToDraTranslation
-
- All Implemented Interfaces:
Serializable
,Comparable<LtlTranslationRepository.LtlToDraTranslation>
,LtlTranslationRepository.LtlTranslation<RabinAcceptance,GeneralizedRabinAcceptance>
- Enclosing class:
- LtlTranslationRepository
public static enum LtlTranslationRepository.LtlToDraTranslation extends Enum<LtlTranslationRepository.LtlToDraTranslation> implements LtlTranslationRepository.LtlTranslation<RabinAcceptance,GeneralizedRabinAcceptance>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description EKS16
EKS20
SE20
SMALLEST_AUTOMATON
-
Field Summary
Fields Modifier and Type Field Description static LtlTranslationRepository.LtlToDraTranslation
DEFAULT
static String
EKS16_DESCRIPTION
static String
EKS20_DESCRIPTION
static String
SE20_DESCRIPTION
static String
SMALLEST_AUTOMATON_DESCRIPTION
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Class<RabinAcceptance>
acceptanceClassLowerBound()
Class<GeneralizedRabinAcceptance>
acceptanceClassUpperBound()
<R extends GeneralizedRabinAcceptance>
Function<LabelledFormula,Automaton<?,? extends R>>translation(Class<R> acceptanceClass, Set<LtlTranslationRepository.Option> translationOptions, OptionalInt lookahead)
static LtlTranslationRepository.LtlToDraTranslation
valueOf(String name)
Returns the enum constant of this type with the specified name.static LtlTranslationRepository.LtlToDraTranslation[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.-
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Methods inherited from interface owl.translations.LtlTranslationRepository.LtlTranslation
acceptanceClassWithinBounds, citeKey, translation, translation, translation, translation
-
-
-
-
Enum Constant Detail
-
EKS16
public static final LtlTranslationRepository.LtlToDraTranslation EKS16
-
EKS20
public static final LtlTranslationRepository.LtlToDraTranslation EKS20
-
SE20
public static final LtlTranslationRepository.LtlToDraTranslation SE20
-
SMALLEST_AUTOMATON
public static final LtlTranslationRepository.LtlToDraTranslation SMALLEST_AUTOMATON
-
-
Field Detail
-
DEFAULT
public static final LtlTranslationRepository.LtlToDraTranslation DEFAULT
-
EKS16_DESCRIPTION
public static final String EKS16_DESCRIPTION
- See Also:
- Constant Field Values
-
EKS20_DESCRIPTION
public static final String EKS20_DESCRIPTION
- See Also:
- Constant Field Values
-
SE20_DESCRIPTION
public static final String SE20_DESCRIPTION
- See Also:
- Constant Field Values
-
SMALLEST_AUTOMATON_DESCRIPTION
public static final String SMALLEST_AUTOMATON_DESCRIPTION
- See Also:
- Constant Field Values
-
-
Method Detail
-
values
public static LtlTranslationRepository.LtlToDraTranslation[] 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 (LtlTranslationRepository.LtlToDraTranslation c : LtlTranslationRepository.LtlToDraTranslation.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static LtlTranslationRepository.LtlToDraTranslation 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
-
acceptanceClassLowerBound
public Class<RabinAcceptance> acceptanceClassLowerBound()
- Specified by:
acceptanceClassLowerBound
in interfaceLtlTranslationRepository.LtlTranslation<RabinAcceptance,GeneralizedRabinAcceptance>
-
acceptanceClassUpperBound
public Class<GeneralizedRabinAcceptance> acceptanceClassUpperBound()
- Specified by:
acceptanceClassUpperBound
in interfaceLtlTranslationRepository.LtlTranslation<RabinAcceptance,GeneralizedRabinAcceptance>
-
translation
public <R extends GeneralizedRabinAcceptance> Function<LabelledFormula,Automaton<?,? extends R>> translation(Class<R> acceptanceClass, Set<LtlTranslationRepository.Option> translationOptions, OptionalInt lookahead)
- Specified by:
translation
in interfaceLtlTranslationRepository.LtlTranslation<RabinAcceptance,GeneralizedRabinAcceptance>
-
-