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

org.apache.lens.cube.parse
Enum CandidateTablePruneCause.CandidateTablePruneCode

java.lang.Object
  extended by java.lang.Enum<CandidateTablePruneCause.CandidateTablePruneCode>
      extended by org.apache.lens.cube.parse.CandidateTablePruneCause.CandidateTablePruneCode
All Implemented Interfaces:
Serializable, Comparable<CandidateTablePruneCause.CandidateTablePruneCode>
Enclosing class:
CandidateTablePruneCause

public static enum CandidateTablePruneCause.CandidateTablePruneCode
extends Enum<CandidateTablePruneCause.CandidateTablePruneCode>


Enum Constant Summary
COLUMN_NOT_FOUND
           
COLUMN_NOT_VALID
           
INVALID
           
INVALID_DENORM_TABLE
           
MISSING_DEFAULT_AGGREGATE
           
MISSING_PARTITIONS
           
MISSING_STORAGES
           
MORE_PARTITIONS
           
MORE_WEIGHT
           
NO_CANDIDATE_STORAGES
           
NO_COLUMN_PART_OF_A_JOIN_PATH
           
NO_FACT_UPDATE_PERIODS_FOR_GIVEN_RANGE
           
 
Method Summary
static CandidateTablePruneCause.CandidateTablePruneCode valueOf(String name)
          Returns the enum constant of this type with the specified name.
static CandidateTablePruneCause.CandidateTablePruneCode[] 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

INVALID

public static final CandidateTablePruneCause.CandidateTablePruneCode INVALID

COLUMN_NOT_VALID

public static final CandidateTablePruneCause.CandidateTablePruneCode COLUMN_NOT_VALID

COLUMN_NOT_FOUND

public static final CandidateTablePruneCause.CandidateTablePruneCode COLUMN_NOT_FOUND

INVALID_DENORM_TABLE

public static final CandidateTablePruneCause.CandidateTablePruneCode INVALID_DENORM_TABLE

MISSING_STORAGES

public static final CandidateTablePruneCause.CandidateTablePruneCode MISSING_STORAGES

NO_CANDIDATE_STORAGES

public static final CandidateTablePruneCause.CandidateTablePruneCode NO_CANDIDATE_STORAGES

NO_FACT_UPDATE_PERIODS_FOR_GIVEN_RANGE

public static final CandidateTablePruneCause.CandidateTablePruneCode NO_FACT_UPDATE_PERIODS_FOR_GIVEN_RANGE

NO_COLUMN_PART_OF_A_JOIN_PATH

public static final CandidateTablePruneCause.CandidateTablePruneCode NO_COLUMN_PART_OF_A_JOIN_PATH

MORE_WEIGHT

public static final CandidateTablePruneCause.CandidateTablePruneCode MORE_WEIGHT

MORE_PARTITIONS

public static final CandidateTablePruneCause.CandidateTablePruneCode MORE_PARTITIONS

MISSING_DEFAULT_AGGREGATE

public static final CandidateTablePruneCause.CandidateTablePruneCode MISSING_DEFAULT_AGGREGATE

MISSING_PARTITIONS

public static final CandidateTablePruneCause.CandidateTablePruneCode MISSING_PARTITIONS
Method Detail

values

public static CandidateTablePruneCause.CandidateTablePruneCode[] 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 (CandidateTablePruneCause.CandidateTablePruneCode c : CandidateTablePruneCause.CandidateTablePruneCode.values())
    System.out.println(c);

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

valueOf

public static CandidateTablePruneCause.CandidateTablePruneCode 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.