Package owl.translations
Enum LtlTranslationRepository.BranchingMode
- java.lang.Object
-
- java.lang.Enum<LtlTranslationRepository.BranchingMode>
-
- owl.translations.LtlTranslationRepository.BranchingMode
-
- All Implemented Interfaces:
Serializable
,Comparable<LtlTranslationRepository.BranchingMode>
- Enclosing class:
- LtlTranslationRepository
public static enum LtlTranslationRepository.BranchingMode extends Enum<LtlTranslationRepository.BranchingMode>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DETERMINISTIC
LIMIT_DETERMINISTIC
NON_DETERMINISTIC
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static LtlTranslationRepository.BranchingMode
valueOf(String name)
Returns the enum constant of this type with the specified name.static LtlTranslationRepository.BranchingMode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NON_DETERMINISTIC
public static final LtlTranslationRepository.BranchingMode NON_DETERMINISTIC
-
LIMIT_DETERMINISTIC
public static final LtlTranslationRepository.BranchingMode LIMIT_DETERMINISTIC
-
DETERMINISTIC
public static final LtlTranslationRepository.BranchingMode DETERMINISTIC
-
-
Method Detail
-
values
public static LtlTranslationRepository.BranchingMode[] 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.BranchingMode c : LtlTranslationRepository.BranchingMode.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.BranchingMode 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
-
-