Enum InfinispanEndpointBuilderFactory.InfinispanOperation
- java.lang.Object
-
- java.lang.Enum<InfinispanEndpointBuilderFactory.InfinispanOperation>
-
- org.apache.camel.builder.endpoint.dsl.InfinispanEndpointBuilderFactory.InfinispanOperation
-
- All Implemented Interfaces:
Serializable
,Comparable<InfinispanEndpointBuilderFactory.InfinispanOperation>
- Enclosing interface:
- InfinispanEndpointBuilderFactory
public static enum InfinispanEndpointBuilderFactory.InfinispanOperation extends Enum<InfinispanEndpointBuilderFactory.InfinispanOperation>
Proxy enum fororg.apache.camel.component.infinispan.InfinispanOperation
enum.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CLEAR
CLEARASYNC
COMPUTE
COMPUTEASYNC
CONTAINSKEY
CONTAINSVALUE
GET
GETORDEFAULT
PUT
PUTALL
PUTALLASYNC
PUTASYNC
PUTIFABSENT
PUTIFABSENTASYNC
QUERY
REMOVE
REMOVEASYNC
REPLACE
REPLACEASYNC
SIZE
STATS
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static InfinispanEndpointBuilderFactory.InfinispanOperation
valueOf(String name)
Returns the enum constant of this type with the specified name.static InfinispanEndpointBuilderFactory.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 InfinispanEndpointBuilderFactory.InfinispanOperation PUT
-
PUTASYNC
public static final InfinispanEndpointBuilderFactory.InfinispanOperation PUTASYNC
-
PUTALL
public static final InfinispanEndpointBuilderFactory.InfinispanOperation PUTALL
-
PUTALLASYNC
public static final InfinispanEndpointBuilderFactory.InfinispanOperation PUTALLASYNC
-
PUTIFABSENT
public static final InfinispanEndpointBuilderFactory.InfinispanOperation PUTIFABSENT
-
PUTIFABSENTASYNC
public static final InfinispanEndpointBuilderFactory.InfinispanOperation PUTIFABSENTASYNC
-
GET
public static final InfinispanEndpointBuilderFactory.InfinispanOperation GET
-
GETORDEFAULT
public static final InfinispanEndpointBuilderFactory.InfinispanOperation GETORDEFAULT
-
CONTAINSKEY
public static final InfinispanEndpointBuilderFactory.InfinispanOperation CONTAINSKEY
-
CONTAINSVALUE
public static final InfinispanEndpointBuilderFactory.InfinispanOperation CONTAINSVALUE
-
REMOVE
public static final InfinispanEndpointBuilderFactory.InfinispanOperation REMOVE
-
REMOVEASYNC
public static final InfinispanEndpointBuilderFactory.InfinispanOperation REMOVEASYNC
-
REPLACE
public static final InfinispanEndpointBuilderFactory.InfinispanOperation REPLACE
-
REPLACEASYNC
public static final InfinispanEndpointBuilderFactory.InfinispanOperation REPLACEASYNC
-
SIZE
public static final InfinispanEndpointBuilderFactory.InfinispanOperation SIZE
-
CLEAR
public static final InfinispanEndpointBuilderFactory.InfinispanOperation CLEAR
-
CLEARASYNC
public static final InfinispanEndpointBuilderFactory.InfinispanOperation CLEARASYNC
-
QUERY
public static final InfinispanEndpointBuilderFactory.InfinispanOperation QUERY
-
STATS
public static final InfinispanEndpointBuilderFactory.InfinispanOperation STATS
-
COMPUTE
public static final InfinispanEndpointBuilderFactory.InfinispanOperation COMPUTE
-
COMPUTEASYNC
public static final InfinispanEndpointBuilderFactory.InfinispanOperation COMPUTEASYNC
-
-
Method Detail
-
values
public static InfinispanEndpointBuilderFactory.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 (InfinispanEndpointBuilderFactory.InfinispanOperation c : InfinispanEndpointBuilderFactory.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 InfinispanEndpointBuilderFactory.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
-
-