fr.cnes.sitools.dataset.model.structure
Enum TypeJointure

java.lang.Object
  extended by java.lang.Enum<TypeJointure>
      extended by fr.cnes.sitools.dataset.model.structure.TypeJointure
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<TypeJointure>

public enum TypeJointure
extends java.lang.Enum<TypeJointure>

Join types

Author:
d.arpin (AKKA technologies)

Enum Constant Summary
CROSS_JOIN
          crossJoin jointure
INNER_JOIN
          innerJoin jointure
LEFT_JOIN
          leftJoin jointure
LEFT_OUTER_JOIN
          leftOuterJoin jointure
RIGHT_JOIN
          rightJoin jointure
RIGHT_OUTER_JOIN
          rightOuterJoin jointure
 
Method Summary
static TypeJointure valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static TypeJointure[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

INNER_JOIN

public static final TypeJointure INNER_JOIN
innerJoin jointure


CROSS_JOIN

public static final TypeJointure CROSS_JOIN
crossJoin jointure


LEFT_JOIN

public static final TypeJointure LEFT_JOIN
leftJoin jointure


LEFT_OUTER_JOIN

public static final TypeJointure LEFT_OUTER_JOIN
leftOuterJoin jointure


RIGHT_JOIN

public static final TypeJointure RIGHT_JOIN
rightJoin jointure


RIGHT_OUTER_JOIN

public static final TypeJointure RIGHT_OUTER_JOIN
rightOuterJoin jointure

Method Detail

values

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

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

valueOf

public static TypeJointure 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


Copyright © 2010-2013 CNES. All Rights Reserved.