public static enum Entity.Type extends Enum<Entity.Type>
Enum Constant and Description |
---|
DATABASE |
DFS_DIR |
DUMMYPARTITION |
FUNCTION |
LOCAL_DIR |
PARTITION |
TABLE |
Modifier and Type | Method and Description |
---|---|
static Entity.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Entity.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Entity.Type DATABASE
public static final Entity.Type TABLE
public static final Entity.Type PARTITION
public static final Entity.Type DUMMYPARTITION
public static final Entity.Type DFS_DIR
public static final Entity.Type LOCAL_DIR
public static final Entity.Type FUNCTION
public static Entity.Type[] values()
for (Entity.Type c : Entity.Type.values()) System.out.println(c);
public static Entity.Type 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 The Apache Software Foundation. All rights reserved.