Package org.infinispan.commands
Enum Class VisitableCommand.LoadType
- All Implemented Interfaces:
- Serializable,- Comparable<VisitableCommand.LoadType>,- Constable
- Enclosing interface:
- VisitableCommand
- 
Nested Class SummaryNested classes/interfaces inherited from class java.lang.EnumEnum.EnumDesc<E extends Enum<E>>
- 
Enum Constant SummaryEnum Constants
- 
Method SummaryModifier and TypeMethodDescriptionstatic VisitableCommand.LoadTypeReturns the enum constant of this class with the specified name.static VisitableCommand.LoadType[]values()Returns an array containing the constants of this enum class, in the order they are declared.
- 
Enum Constant Details- 
DONT_LOADNever load previous value.
- 
PRIMARYIn non-transactional cache, load previous value only on the primary owner. In transactional cache, the value is fetched to originator. Primary then does not have to load the value but for write-skew check.
- 
OWNERIn non-transactional cache, load previous value on both primary and backups. In transactional cache, the value is both fetched to originator and all owners have to load it because it is needed to produce the new value.
 
- 
- 
Method Details- 
valuesReturns 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
 
- 
valueOfReturns 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 name
- NullPointerException- if the argument is null
 
 
-