Enum InfinispanOperation
- java.lang.Object
-
- java.lang.Enum<InfinispanOperation>
-
- org.apache.camel.component.infinispan.InfinispanOperation
-
- All Implemented Interfaces:
Serializable,Comparable<InfinispanOperation>
public enum InfinispanOperation extends Enum<InfinispanOperation>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CLEARCLEARASYNCCOMPUTECOMPUTEASYNCCONTAINSKEYCONTAINSVALUEGETGETORDEFAULTPUTPUTALLPUTALLASYNCPUTASYNCPUTIFABSENTPUTIFABSENTASYNCQUERYREMOVEREMOVEASYNCREPLACEREPLACEASYNCSIZESTATS
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static InfinispanOperationvalueOf(String name)Returns the enum constant of this type with the specified name.static InfinispanOperation[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PUT
public static final InfinispanOperation PUT
-
PUTASYNC
public static final InfinispanOperation PUTASYNC
-
PUTALL
public static final InfinispanOperation PUTALL
-
PUTALLASYNC
public static final InfinispanOperation PUTALLASYNC
-
PUTIFABSENT
public static final InfinispanOperation PUTIFABSENT
-
PUTIFABSENTASYNC
public static final InfinispanOperation PUTIFABSENTASYNC
-
GET
public static final InfinispanOperation GET
-
GETORDEFAULT
public static final InfinispanOperation GETORDEFAULT
-
CONTAINSKEY
public static final InfinispanOperation CONTAINSKEY
-
CONTAINSVALUE
public static final InfinispanOperation CONTAINSVALUE
-
REMOVE
public static final InfinispanOperation REMOVE
-
REMOVEASYNC
public static final InfinispanOperation REMOVEASYNC
-
REPLACE
public static final InfinispanOperation REPLACE
-
REPLACEASYNC
public static final InfinispanOperation REPLACEASYNC
-
SIZE
public static final InfinispanOperation SIZE
-
CLEAR
public static final InfinispanOperation CLEAR
-
CLEARASYNC
public static final InfinispanOperation CLEARASYNC
-
QUERY
public static final InfinispanOperation QUERY
-
STATS
public static final InfinispanOperation STATS
-
COMPUTE
public static final InfinispanOperation COMPUTE
-
COMPUTEASYNC
public static final InfinispanOperation COMPUTEASYNC
-
-
Method Detail
-
values
public static InfinispanOperation[] 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 (InfinispanOperation c : InfinispanOperation.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static InfinispanOperation 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
-
-