ai.krr.propositions
Enum ConnectedSentence.Connective

java.lang.Object
  extended by java.lang.Enum<ConnectedSentence.Connective>
      extended by ai.krr.propositions.ConnectedSentence.Connective
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<ConnectedSentence.Connective>
Enclosing class:
ConnectedSentence

public static enum ConnectedSentence.Connective
extends java.lang.Enum<ConnectedSentence.Connective>

This enumeration defines the possible connectives that can connect the sub-Sentences.


Enum Constant Summary
AND
           
IFF
           
IMPLIES
           
OR
           
XOR
           
 
Method Summary
static ConnectedSentence.Connective valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ConnectedSentence.Connective[] 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 class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

AND

public static final ConnectedSentence.Connective AND

OR

public static final ConnectedSentence.Connective OR

IMPLIES

public static final ConnectedSentence.Connective IMPLIES

IFF

public static final ConnectedSentence.Connective IFF

XOR

public static final ConnectedSentence.Connective XOR
Method Detail

values

public static ConnectedSentence.Connective[] 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 (ConnectedSentence.Connective c : ConnectedSentence.Connective.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static ConnectedSentence.Connective 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 name
java.lang.NullPointerException - if the argument is null