Enum LanguageException.LanguageExceptionReason
- java.lang.Object
-
- java.lang.Enum<LanguageException.LanguageExceptionReason>
-
- net.sf.tweety.logics.commons.error.LanguageException.LanguageExceptionReason
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<LanguageException.LanguageExceptionReason>
,java.lang.constant.Constable
- Enclosing class:
- LanguageException
public static enum LanguageException.LanguageExceptionReason extends java.lang.Enum<LanguageException.LanguageExceptionReason>
-
-
Method Summary
Modifier and Type Method Description java.lang.String
toString()
static LanguageException.LanguageExceptionReason
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static LanguageException.LanguageExceptionReason[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LER_ILLEGAL_PREDICATE
public static final LanguageException.LanguageExceptionReason LER_ILLEGAL_PREDICATE
-
LER_TERM_TYPE_NOT_SUPPORTED
public static final LanguageException.LanguageExceptionReason LER_TERM_TYPE_NOT_SUPPORTED
-
LER_RULES_NOT_SUPPORTED
public static final LanguageException.LanguageExceptionReason LER_RULES_NOT_SUPPORTED
-
LER_DISJUNCTIONS_NOT_SUPPORTED
public static final LanguageException.LanguageExceptionReason LER_DISJUNCTIONS_NOT_SUPPORTED
-
LER_CONJUNCTIONS_NOT_SUPPORTED
public static final LanguageException.LanguageExceptionReason LER_CONJUNCTIONS_NOT_SUPPORTED
-
LER_ASSOCIATIVE_NOT_SUPPORTED
public static final LanguageException.LanguageExceptionReason LER_ASSOCIATIVE_NOT_SUPPORTED
-
LER_QUANTIFICATION_NOT_SUPPORTED
public static final LanguageException.LanguageExceptionReason LER_QUANTIFICATION_NOT_SUPPORTED
-
LER_INSTANTIATION
public static final LanguageException.LanguageExceptionReason LER_INSTANTIATION
-
LER_ILLEGAL_ACCESSS
public static final LanguageException.LanguageExceptionReason LER_ILLEGAL_ACCESSS
-
-
Method Detail
-
values
public static LanguageException.LanguageExceptionReason[] values()
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static LanguageException.LanguageExceptionReason valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Enum<LanguageException.LanguageExceptionReason>
-
-