public enum JoinRelType extends Enum<JoinRelType>
| Modifier and Type | Method and Description |
|---|---|
JoinRelType |
cancelNullsOnLeft()
Returns a join type similar to this but that does not generate nulls on
the left.
|
JoinRelType |
cancelNullsOnRight()
Returns a join type similar to this but that does not generate nulls on
the right.
|
boolean |
generatesNullsOn(int i)
Returns whether this join type generates nulls on side #
i. |
boolean |
generatesNullsOnLeft()
Returns whether a join of this type may generate NULL values on the
left-hand side.
|
boolean |
generatesNullsOnRight()
Returns whether a join of this type may generate NULL values on the
right-hand side.
|
JoinRelType |
swap()
Swaps left to right, and vice versa.
|
static JoinRelType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JoinRelType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JoinRelType INNER
public static final JoinRelType LEFT
public static final JoinRelType RIGHT
public static final JoinRelType FULL
public static JoinRelType[] values()
for (JoinRelType c : JoinRelType.values()) System.out.println(c);
public static JoinRelType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant
with the specified nameNullPointerException - if the argument is nullpublic boolean generatesNullsOnRight()
public boolean generatesNullsOnLeft()
public JoinRelType swap()
public boolean generatesNullsOn(int i)
i.public JoinRelType cancelNullsOnLeft()
public JoinRelType cancelNullsOnRight()
Copyright © 2012–2015 The Apache Software Foundation. All rights reserved.