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

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

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

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


Enum Constant Summary
INVALID
           
MISSING_UPDATE_PERIODS
           
NO_CANDIDATE_PERIODS
           
NO_PARTITIONS
           
PART_COL_DOES_NOT_EXIST
           
TABLE_NOT_EXIST
           
UNSUPPORTED
           
 
Method Summary
static CandidateTablePruneCause.SkipStorageCode valueOf(String name)
          Returns the enum constant of this type with the specified name.
static CandidateTablePruneCause.SkipStorageCode[] 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.SkipStorageCode INVALID

TABLE_NOT_EXIST

public static final CandidateTablePruneCause.SkipStorageCode TABLE_NOT_EXIST

MISSING_UPDATE_PERIODS

public static final CandidateTablePruneCause.SkipStorageCode MISSING_UPDATE_PERIODS

NO_CANDIDATE_PERIODS

public static final CandidateTablePruneCause.SkipStorageCode NO_CANDIDATE_PERIODS

NO_PARTITIONS

public static final CandidateTablePruneCause.SkipStorageCode NO_PARTITIONS

PART_COL_DOES_NOT_EXIST

public static final CandidateTablePruneCause.SkipStorageCode PART_COL_DOES_NOT_EXIST

UNSUPPORTED

public static final CandidateTablePruneCause.SkipStorageCode UNSUPPORTED
Method Detail

values

public static CandidateTablePruneCause.SkipStorageCode[] 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.SkipStorageCode c : CandidateTablePruneCause.SkipStorageCode.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.SkipStorageCode 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.