public enum CubeTableType extends Enum<CubeTableType>
Enum Constant and Description |
---|
CUBE |
DIM_TABLE |
DIMENSION |
FACT |
SEGMENTATION |
STORAGE |
Modifier and Type | Method and Description |
---|---|
static CubeTableType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CubeTableType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CubeTableType CUBE
public static final CubeTableType DIMENSION
public static final CubeTableType FACT
public static final CubeTableType DIM_TABLE
public static final CubeTableType STORAGE
public static final CubeTableType SEGMENTATION
public static CubeTableType[] values()
for (CubeTableType c : CubeTableType.values()) System.out.println(c);
public static CubeTableType 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 © 2014–2018 Apache Software Foundation. All rights reserved.