net.sf.farrago.fennel.rel
Enum LhxJoinRelType
java.lang.Object
java.lang.Enum<LhxJoinRelType>
net.sf.farrago.fennel.rel.LhxJoinRelType
- All Implemented Interfaces:
- Serializable, Comparable<LhxJoinRelType>
public enum LhxJoinRelType
- extends Enum<LhxJoinRelType>
Enumeration of LucidDB Hash Join types.
- Version:
- $Id: //open/dev/farrago/src/net/sf/farrago/fennel/rel/LhxJoinRelType.java#1 $
- Author:
- Rushan Chen
INNER
public static final LhxJoinRelType INNER
LEFT
public static final LhxJoinRelType LEFT
RIGHT
public static final LhxJoinRelType RIGHT
FULL
public static final LhxJoinRelType FULL
LEFTSEMI
public static final LhxJoinRelType LEFTSEMI
RIGHTSEMI
public static final LhxJoinRelType RIGHTSEMI
RIGHTANTI
public static final LhxJoinRelType RIGHTANTI
logicalJoinType
private final JoinRelType logicalJoinType
values
public static final LhxJoinRelType[] values()
- Returns an array containing the constants of this enum type, in
the order they're declared. This method may be used to iterate
over the constants as follows:
for(LhxJoinRelType c : LhxJoinRelType.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they're declared
valueOf
public static LhxJoinRelType 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
getLogicalJoinType
public JoinRelType getLogicalJoinType()
getLhxJoinType
public static LhxJoinRelType getLhxJoinType(JoinRelType logicalJoinType)