Package org.infinispan.commands
Enum VisitableCommand.LoadType
- All Implemented Interfaces:
Serializable
,Comparable<VisitableCommand.LoadType>
- Enclosing interface:
- VisitableCommand
-
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionstatic VisitableCommand.LoadType
Returns the enum constant of this type with the specified name.static VisitableCommand.LoadType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
DONT_LOAD
Never load previous value. -
PRIMARY
In 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. -
OWNER
In 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
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-