This project has retired. For details please refer to its Attic page.
CubeTableType (Lens 2.1.0-beta-incubating API)

org.apache.lens.cube.metadata
Enum CubeTableType

java.lang.Object
  extended by java.lang.Enum<CubeTableType>
      extended by org.apache.lens.cube.metadata.CubeTableType
All Implemented Interfaces:
Serializable, Comparable<CubeTableType>

public enum CubeTableType
extends Enum<CubeTableType>


Enum Constant Summary
CUBE
           
DIM_TABLE
           
DIMENSION
           
FACT
           
STORAGE
           
 
Method Summary
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.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

CUBE

public static final CubeTableType CUBE

DIMENSION

public static final CubeTableType DIMENSION

FACT

public static final CubeTableType FACT

DIM_TABLE

public static final CubeTableType DIM_TABLE

STORAGE

public static final CubeTableType STORAGE
Method Detail

values

public static CubeTableType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (CubeTableType c : CubeTableType.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static CubeTableType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null


Copyright © 2014–2015 Apache Software Foundation. All rights reserved.