|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||
java.lang.Objectjava.lang.Enum<IndexType>
com.bea.alcs.service.search.IndexType
public enum IndexType
An enumeration of the search index types EP uses.
| Enum Constant Summary | |
|---|---|
CATEGORY
A category index type. |
|
CUSTOMER
A customer index type. |
|
ORDER
An order index type. |
|
ORDER_RETURN
An order return index type. |
|
PRODUCT
A product index type. |
|
PRODUCT_ASSOCIATION
A product association index type. |
|
PROMOTION
A promotion index type. |
|
| Method Summary | |
|---|---|
static IndexType |
findFromName(java.lang.String indexName)
Attempts to find the IndexType with the given name. |
java.lang.String |
getIndexName()
Return a string identifier for this type in lower case. |
static IndexType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static IndexType[] |
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 |
|---|
public static final IndexType PRODUCT
public static final IndexType PRODUCT_ASSOCIATION
public static final IndexType CATEGORY
public static final IndexType CUSTOMER
public static final IndexType ORDER
public static final IndexType ORDER_RETURN
public static final IndexType PROMOTION
| Method Detail |
|---|
public static final IndexType[] values()
for(IndexType c : IndexType.values())
System.out.println(c);
public static IndexType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.
java.lang.IllegalArgumentException - if this enum type has no constant
with the specified namepublic java.lang.String getIndexName()
public static IndexType findFromName(java.lang.String indexName)
IndexType with the given name. Returns null if the
type is not found.
indexName - the index name to search for
IndexType with the given name
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||