public static enum Partition.SplitType extends Enum<Partition.SplitType>
| Enum Constant and Description |
|---|
COLLECTION |
MAP |
NONE |
RECORD |
| Modifier and Type | Method and Description |
|---|---|
static Partition.SplitType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Partition.SplitType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Partition.SplitType NONE
public static final Partition.SplitType RECORD
public static final Partition.SplitType COLLECTION
public static final Partition.SplitType MAP
public static Partition.SplitType[] values()
for (Partition.SplitType c : Partition.SplitType.values()) System.out.println(c);
public static Partition.SplitType 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 © 2007-2012 The Apache Software Foundation