Enum CometProductPanelConfig.SearchMethod
- java.lang.Object
-
- java.lang.Enum<CometProductPanelConfig.SearchMethod>
-
- com.priint.pubserver.comet.entity.product.CometProductPanelConfig.SearchMethod
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<CometProductPanelConfig.SearchMethod>
- Enclosing class:
- CometProductPanelConfig
public static enum CometProductPanelConfig.SearchMethod extends java.lang.Enum<CometProductPanelConfig.SearchMethod>
The Enum SearchMethod: BUCKET_TREE, PLANNING_TREE, FIND_STATEMENT
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BUCKET_TREEThe bucket tree.FIND_STATEMENTThe find statement.PLANNING_TREEThe planning tree.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CometProductPanelConfig.SearchMethodvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static CometProductPanelConfig.SearchMethod[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BUCKET_TREE
public static final CometProductPanelConfig.SearchMethod BUCKET_TREE
The bucket tree.
-
PLANNING_TREE
public static final CometProductPanelConfig.SearchMethod PLANNING_TREE
The planning tree.
-
FIND_STATEMENT
public static final CometProductPanelConfig.SearchMethod FIND_STATEMENT
The find statement.
-
-
Method Detail
-
values
public static CometProductPanelConfig.SearchMethod[] 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 (CometProductPanelConfig.SearchMethod c : CometProductPanelConfig.SearchMethod.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CometProductPanelConfig.SearchMethod 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 namejava.lang.NullPointerException- if the argument is null
-
-