com.ibm.pim.search
Enum SearchQuery.ColumnType

java.lang.Object
  extended by java.lang.Enum<SearchQuery.ColumnType>
      extended by com.ibm.pim.search.SearchQuery.ColumnType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<SearchQuery.ColumnType>
Enclosing interface:
SearchQuery

public static enum SearchQuery.ColumnType
extends java.lang.Enum<SearchQuery.ColumnType>


Enum Constant Summary
BOOL
          BOOL represents Flag attributedefinition type.
CATALOG
          CATALOG represents Catalog entity of MDMPIM.
CATEGORY
          CATEGORY represents Category of Hierarchy.getCategory() can be used in SearchResultSetfor CATEGORY SqlColumnType
DATE
          DATE represents Date attributedefinition type.
HIERARCHY
          HIERARCHY represents Category Tree(Hierarchy) entity of MDMPIM.
ITEM
          ITEM represents Catalog Item of MDMPIM.
NUMBER
          NUMBER represents Integer and Number attributedefinition type.
PK
          PK represents Primary Key of Spec entity of MDMPIM.
SPEC
          SPEC represents Spec entity of MDMPIM.
STRING
          STRING represents String attributedefinition type.
 
Method Summary
static SearchQuery.ColumnType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static SearchQuery.ColumnType[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

NUMBER

public static final SearchQuery.ColumnType NUMBER
NUMBER represents Integer and Number attributedefinition type. getInt(),getFloat(),getLong(),getDouble() can be used in SearchResultSetfor NUMBER SqlColumnType


DATE

public static final SearchQuery.ColumnType DATE
DATE represents Date attributedefinition type. getDate() can be used in SearchResultSetfor DATE SqlColumnType


STRING

public static final SearchQuery.ColumnType STRING
STRING represents String attributedefinition type. getString() can be used in SearchResultSetfor STRING SqlColumnType


BOOL

public static final SearchQuery.ColumnType BOOL
BOOL represents Flag attributedefinition type. getBoolean() can be used in SearchResultSetfor BOOL SqlColumnType


ITEM

public static final SearchQuery.ColumnType ITEM
ITEM represents Catalog Item of MDMPIM. getItem() can be used in SearchResultSetfor ITEM SqlColumnType


CATEGORY

public static final SearchQuery.ColumnType CATEGORY
CATEGORY represents Category of Hierarchy.getCategory() can be used in SearchResultSetfor CATEGORY SqlColumnType


SPEC

public static final SearchQuery.ColumnType SPEC
SPEC represents Spec entity of MDMPIM. getSpec() can be used in SearchResultSetfor SPEC SqlColumnType


CATALOG

public static final SearchQuery.ColumnType CATALOG
CATALOG represents Catalog entity of MDMPIM. getCatalog() can be used in SearchResultSetfor CATALOG SqlColumnType


HIERARCHY

public static final SearchQuery.ColumnType HIERARCHY
HIERARCHY represents Category Tree(Hierarchy) entity of MDMPIM. getHierarchy() can be used in SearchResultSetfor HIERARCHY SqlColumnType


PK

public static final SearchQuery.ColumnType PK
PK represents Primary Key of Spec entity of MDMPIM.

Method Detail

values

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

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

valueOf

public static SearchQuery.ColumnType valueOf(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name