Enum Class AbstractSaveListActionSupport.SaveResponse.ListAction
java.lang.Object
java.lang.Enum<AbstractSaveListActionSupport.SaveResponse.ListAction>
name.matthewgreet.strutscommons.action.AbstractSaveListActionSupport.SaveResponse.ListAction
- All Implemented Interfaces:
Serializable
,Comparable<AbstractSaveListActionSupport.SaveResponse.ListAction>
,java.lang.constant.Constable
- Enclosing class:
AbstractSaveListActionSupport.SaveResponse<T>
public static enum AbstractSaveListActionSupport.SaveResponse.ListAction
extends Enum<AbstractSaveListActionSupport.SaveResponse.ListAction>
- ADD_AND_RELOAD_ITEM
- Adds item to list and reloads item for all required data.
- ADD_ITEM
- Adds item to list, which must have all expected data.
- DESELECT
- Sets the list selection to no item.
- NONE
- Does not affect list.
- RELOAD_ENTIRE
- Reloads master list, which means all slave lists are cleared for reload.
- RELOAD_ITEM
- Reloads selected item of list only.
- RELOAD_LIST
- Reloads list using current list finder.
- RELOAD_MASTER
- Reloads selected item of master list, which means all slave lists are cleared for reload.
- REMOVE_ITEM
- Removes selected item of list.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescription -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
ADD_AND_RELOAD_ITEM
-
ADD_ITEM
-
DESELECT
-
NONE
-
RELOAD_ENTIRE
-
RELOAD_ITEM
-
RELOAD_LIST
-
RELOAD_MASTER
-
REMOVE_ITEM
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-