public static enum MapMetaData.MapType extends Enum<MapMetaData.MapType>
| Enum Constant and Description |
|---|
MAP_TYPE_JOIN |
MAP_TYPE_KEY_IN_VALUE |
MAP_TYPE_VALUE_IN_KEY |
| Modifier and Type | Method and Description |
|---|---|
static MapMetaData.MapType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MapMetaData.MapType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MapMetaData.MapType MAP_TYPE_JOIN
public static final MapMetaData.MapType MAP_TYPE_KEY_IN_VALUE
public static final MapMetaData.MapType MAP_TYPE_VALUE_IN_KEY
public static MapMetaData.MapType[] values()
for (MapMetaData.MapType c : MapMetaData.MapType.values()) System.out.println(c);
public static MapMetaData.MapType 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 © 2013. All Rights Reserved.