Package owl.translations
Enum LtlTranslationRepository.LtlToNbaTranslation
- java.lang.Object
-
- java.lang.Enum<LtlTranslationRepository.LtlToNbaTranslation>
-
- owl.translations.LtlTranslationRepository.LtlToNbaTranslation
-
- All Implemented Interfaces:
Serializable
,Comparable<LtlTranslationRepository.LtlToNbaTranslation>
,LtlTranslationRepository.LtlTranslation<BuchiAcceptance,GeneralizedBuchiAcceptance>
- Enclosing class:
- LtlTranslationRepository
public static enum LtlTranslationRepository.LtlToNbaTranslation extends Enum<LtlTranslationRepository.LtlToNbaTranslation> implements LtlTranslationRepository.LtlTranslation<BuchiAcceptance,GeneralizedBuchiAcceptance>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description EKS20
-
Field Summary
Fields Modifier and Type Field Description static LtlTranslationRepository.LtlToNbaTranslation
DEFAULT
static String
EKS20_DESCRIPTION
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Class<BuchiAcceptance>
acceptanceClassLowerBound()
Class<GeneralizedBuchiAcceptance>
acceptanceClassUpperBound()
<B extends GeneralizedBuchiAcceptance>
Function<LabelledFormula,Automaton<?,? extends B>>translation(Class<B> acceptanceClass, Set<LtlTranslationRepository.Option> translationOptions, OptionalInt lookahead)
static LtlTranslationRepository.LtlToNbaTranslation
valueOf(String name)
Returns the enum constant of this type with the specified name.static LtlTranslationRepository.LtlToNbaTranslation[]
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
-
EKS20
public static final LtlTranslationRepository.LtlToNbaTranslation EKS20
-
-
Field Detail
-
DEFAULT
public static final LtlTranslationRepository.LtlToNbaTranslation DEFAULT
-
EKS20_DESCRIPTION
public static final String EKS20_DESCRIPTION
- See Also:
- Constant Field Values
-
-
Method Detail
-
values
public static LtlTranslationRepository.LtlToNbaTranslation[] 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.LtlToNbaTranslation c : LtlTranslationRepository.LtlToNbaTranslation.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.LtlToNbaTranslation 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<BuchiAcceptance> acceptanceClassLowerBound()
- Specified by:
acceptanceClassLowerBound
in interfaceLtlTranslationRepository.LtlTranslation<BuchiAcceptance,GeneralizedBuchiAcceptance>
-
acceptanceClassUpperBound
public Class<GeneralizedBuchiAcceptance> acceptanceClassUpperBound()
- Specified by:
acceptanceClassUpperBound
in interfaceLtlTranslationRepository.LtlTranslation<BuchiAcceptance,GeneralizedBuchiAcceptance>
-
translation
public <B extends GeneralizedBuchiAcceptance> Function<LabelledFormula,Automaton<?,? extends B>> translation(Class<B> acceptanceClass, Set<LtlTranslationRepository.Option> translationOptions, OptionalInt lookahead)
- Specified by:
translation
in interfaceLtlTranslationRepository.LtlTranslation<BuchiAcceptance,GeneralizedBuchiAcceptance>
-
-