Package org.infinispan.functional
Enum Param.ReplicationMode
- java.lang.Object
-
- java.lang.Enum<Param.ReplicationMode>
-
- org.infinispan.functional.Param.ReplicationMode
-
- All Implemented Interfaces:
Serializable
,Comparable<Param.ReplicationMode>
,Param<Param.ReplicationMode>
@Experimental public static enum Param.ReplicationMode extends Enum<Param.ReplicationMode> implements Param<Param.ReplicationMode>
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.infinispan.functional.Param
Param.ExecutionMode, Param.LockingMode, Param.PersistenceMode, Param.ReplicationMode, Param.StatisticsMode
-
-
Field Summary
Fields Modifier and Type Field Description static Param.ReplicationMode[]
CACHED_VALUES
static int
ID
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Param.ReplicationMode
defaultValue()
Param.ReplicationMode
get()
Parameter's value.int
id()
A parameter's identifier.static Param.ReplicationMode
valueOf(int ordinal)
Returns the enum constant of this type with the specified name.static Param.ReplicationMode
valueOf(String name)
Returns the enum constant of this type with the specified name.static Param.ReplicationMode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SYNC
public static final Param.ReplicationMode SYNC
Command is completed when all owners are updated.
-
ASYNC
public static final Param.ReplicationMode ASYNC
Invoking node does not know when the owners are updated nor if the command fails.
-
-
Field Detail
-
ID
public static final int ID
- See Also:
- Constant Field Values
-
CACHED_VALUES
public static final Param.ReplicationMode[] CACHED_VALUES
-
-
Method Detail
-
values
public static Param.ReplicationMode[] 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 (Param.ReplicationMode c : Param.ReplicationMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Param.ReplicationMode valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
id
public int id()
Description copied from interface:Param
A parameter's identifier. Each parameter must have a different id.A numeric id makes it flexible enough to be stored in collections that take up low resources, such as arrays.
- Specified by:
id
in interfaceParam<Param.ReplicationMode>
-
get
public Param.ReplicationMode get()
Description copied from interface:Param
Parameter's value.- Specified by:
get
in interfaceParam<Param.ReplicationMode>
-
defaultValue
public static Param.ReplicationMode defaultValue()
-
valueOf
public static Param.ReplicationMode valueOf(int ordinal)
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:
ordinal
- 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
-
-