org.d2rq.lang
Enum JoinSetParser.Direction

java.lang.Object
  extended by java.lang.Enum<JoinSetParser.Direction>
      extended by org.d2rq.lang.JoinSetParser.Direction
All Implemented Interfaces:
Serializable, Comparable<JoinSetParser.Direction>
Enclosing class:
JoinSetParser

public static enum JoinSetParser.Direction
extends Enum<JoinSetParser.Direction>


Enum Constant Summary
LEFT
           
RIGHT
           
UNDIRECTED
           
 
Field Summary
 String operator
           
 
Method Summary
 JoinSetParser.Direction flipped()
           
static JoinSetParser.Direction valueOf(String name)
          Returns the enum constant of this type with the specified name.
static JoinSetParser.Direction[] 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

LEFT

public static final JoinSetParser.Direction LEFT

RIGHT

public static final JoinSetParser.Direction RIGHT

UNDIRECTED

public static final JoinSetParser.Direction UNDIRECTED
Field Detail

operator

public final String operator
Method Detail

values

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

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

valueOf

public static JoinSetParser.Direction 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 name
NullPointerException - if the argument is null

flipped

public JoinSetParser.Direction flipped()