public enum Functionality extends Enum<Functionality>
| Enum Constant and Description |
|---|
DATASINK |
GROUPBY |
JOIN |
MERGE |
PARTITION |
SCRIPT |
SELECT |
SORT |
| Modifier and Type | Method and Description |
|---|---|
static Functionality |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Functionality[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Functionality DATASINK
public static final Functionality SELECT
public static final Functionality JOIN
public static final Functionality SORT
public static final Functionality MERGE
public static final Functionality PARTITION
public static final Functionality SCRIPT
public static final Functionality GROUPBY
public static Functionality[] values()
for (Functionality c : Functionality.values()) System.out.println(c);
public static Functionality 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 © 2017. All Rights Reserved.