Package com.jalios.jcms.search
Enum AdminSearchEnginesHandler.Action
- java.lang.Object
-
- java.lang.Enum<AdminSearchEnginesHandler.Action>
-
- com.jalios.jcms.search.AdminSearchEnginesHandler.Action
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<AdminSearchEnginesHandler.Action>
- Enclosing class:
- AdminSearchEnginesHandler
public static enum AdminSearchEnginesHandler.Action extends java.lang.Enum<AdminSearchEnginesHandler.Action>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACTION_ALL
ACTION_INDEX_CATSE
ACTION_INDEX_MBRSE
ACTION_INDEX_PUBSE
ACTION_NONE
ACTION_OPTIMIZE_CATSE
ACTION_OPTIMIZE_MBRSE
ACTION_OPTIMIZE_PUBSE
ACTION_POPULATE_SPELLSUGGEST
ACTION_UPDATE_SPELLSUGGEST
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AdminSearchEnginesHandler.Action
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static AdminSearchEnginesHandler.Action[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ACTION_NONE
public static final AdminSearchEnginesHandler.Action ACTION_NONE
-
ACTION_ALL
public static final AdminSearchEnginesHandler.Action ACTION_ALL
-
ACTION_INDEX_PUBSE
public static final AdminSearchEnginesHandler.Action ACTION_INDEX_PUBSE
-
ACTION_OPTIMIZE_PUBSE
public static final AdminSearchEnginesHandler.Action ACTION_OPTIMIZE_PUBSE
-
ACTION_INDEX_CATSE
public static final AdminSearchEnginesHandler.Action ACTION_INDEX_CATSE
-
ACTION_OPTIMIZE_CATSE
public static final AdminSearchEnginesHandler.Action ACTION_OPTIMIZE_CATSE
-
ACTION_INDEX_MBRSE
public static final AdminSearchEnginesHandler.Action ACTION_INDEX_MBRSE
-
ACTION_OPTIMIZE_MBRSE
public static final AdminSearchEnginesHandler.Action ACTION_OPTIMIZE_MBRSE
-
ACTION_POPULATE_SPELLSUGGEST
public static final AdminSearchEnginesHandler.Action ACTION_POPULATE_SPELLSUGGEST
-
ACTION_UPDATE_SPELLSUGGEST
public static final AdminSearchEnginesHandler.Action ACTION_UPDATE_SPELLSUGGEST
-
-
Method Detail
-
values
public static AdminSearchEnginesHandler.Action[] 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 (AdminSearchEnginesHandler.Action c : AdminSearchEnginesHandler.Action.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AdminSearchEnginesHandler.Action 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
-
-