public static enum MapJoinImpl.MapSelectType extends Enum<MapJoinImpl.MapSelectType>
| Enum Constant and Description |
|---|
ENTRY
Select entry
|
KEY
Select key
|
VALUE
Select value (default)
|
| Modifier and Type | Method and Description |
|---|---|
static MapJoinImpl.MapSelectType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MapJoinImpl.MapSelectType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MapJoinImpl.MapSelectType VALUE
public static final MapJoinImpl.MapSelectType KEY
public static final MapJoinImpl.MapSelectType ENTRY
public static MapJoinImpl.MapSelectType[] values()
for (MapJoinImpl.MapSelectType c : MapJoinImpl.MapSelectType.values()) System.out.println(c);
public static MapJoinImpl.MapSelectType 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 © 2012-2013 Batoo. All Rights Reserved.