Package owl.cinterface
Enum CLabelledFormula.AtomicPropositionStatus
- java.lang.Object
-
- java.lang.Enum<CLabelledFormula.AtomicPropositionStatus>
-
- owl.cinterface.CLabelledFormula.AtomicPropositionStatus
-
- All Implemented Interfaces:
Serializable
,Comparable<CLabelledFormula.AtomicPropositionStatus>
- Enclosing class:
- CLabelledFormula
public static enum CLabelledFormula.AtomicPropositionStatus extends Enum<CLabelledFormula.AtomicPropositionStatus>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CONSTANT_FALSE
CONSTANT_TRUE
UNUSED
USED
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static CLabelledFormula.AtomicPropositionStatus
fromCValue(int value)
int
getCValue()
static CLabelledFormula.AtomicPropositionStatus
valueOf(String name)
Returns the enum constant of this type with the specified name.static CLabelledFormula.AtomicPropositionStatus[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CONSTANT_TRUE
public static final CLabelledFormula.AtomicPropositionStatus CONSTANT_TRUE
-
CONSTANT_FALSE
public static final CLabelledFormula.AtomicPropositionStatus CONSTANT_FALSE
-
USED
public static final CLabelledFormula.AtomicPropositionStatus USED
-
UNUSED
public static final CLabelledFormula.AtomicPropositionStatus UNUSED
-
-
Method Detail
-
values
public static CLabelledFormula.AtomicPropositionStatus[] 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 (CLabelledFormula.AtomicPropositionStatus c : CLabelledFormula.AtomicPropositionStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CLabelledFormula.AtomicPropositionStatus 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
-
getCValue
public int getCValue()
-
fromCValue
public static CLabelledFormula.AtomicPropositionStatus fromCValue(int value)
-
-