protected static enum JoinBolt.JoinType extends Enum<JoinBolt.JoinType>
Modifier and Type | Method and Description |
---|---|
static JoinBolt.JoinType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JoinBolt.JoinType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JoinBolt.JoinType INNER
public static final JoinBolt.JoinType LEFT
public static final JoinBolt.JoinType RIGHT
public static final JoinBolt.JoinType OUTER
public static JoinBolt.JoinType[] values()
for (JoinBolt.JoinType c : JoinBolt.JoinType.values()) System.out.println(c);
public static JoinBolt.JoinType 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 nullCopyright © 2019 The Apache Software Foundation. All rights reserved.