Enum HazelcastSetEndpointBuilderFactory.HazelcastOperation
- java.lang.Object
-
- java.lang.Enum<HazelcastSetEndpointBuilderFactory.HazelcastOperation>
-
- org.apache.camel.builder.endpoint.dsl.HazelcastSetEndpointBuilderFactory.HazelcastOperation
-
- All Implemented Interfaces:
Serializable,Comparable<HazelcastSetEndpointBuilderFactory.HazelcastOperation>
- Enclosing interface:
- HazelcastSetEndpointBuilderFactory
public static enum HazelcastSetEndpointBuilderFactory.HazelcastOperation extends Enum<HazelcastSetEndpointBuilderFactory.HazelcastOperation>
Proxy enum fororg.apache.camel.component.hazelcast.HazelcastOperationenum.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ADDADD_ALLCAPACITYCLEARCOMPARE_AND_SETCONTAINS_KEYCONTAINS_VALUEDECREMENTDELETEDESTROYDRAIN_TOEVICTEVICT_ALLGETGET_ALLGET_AND_ADDGET_KEYSINCREMENTOFFERPEEKPOLLPUBLISHPUTPUT_IF_ABSENTQUERYREAD_ONCE_HEADREAD_ONCE_TAILREMAINING_CAPACITYREMOVE_ALLREMOVE_IFREMOVE_VALUERETAIN_ALLSET_VALUETAKEUPDATEVALUE_COUNT
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static HazelcastSetEndpointBuilderFactory.HazelcastOperationvalueOf(String name)Returns the enum constant of this type with the specified name.static HazelcastSetEndpointBuilderFactory.HazelcastOperation[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PUT
public static final HazelcastSetEndpointBuilderFactory.HazelcastOperation PUT
-
DELETE
public static final HazelcastSetEndpointBuilderFactory.HazelcastOperation DELETE
-
GET
public static final HazelcastSetEndpointBuilderFactory.HazelcastOperation GET
-
UPDATE
public static final HazelcastSetEndpointBuilderFactory.HazelcastOperation UPDATE
-
QUERY
public static final HazelcastSetEndpointBuilderFactory.HazelcastOperation QUERY
-
GET_ALL
public static final HazelcastSetEndpointBuilderFactory.HazelcastOperation GET_ALL
-
CLEAR
public static final HazelcastSetEndpointBuilderFactory.HazelcastOperation CLEAR
-
PUT_IF_ABSENT
public static final HazelcastSetEndpointBuilderFactory.HazelcastOperation PUT_IF_ABSENT
-
ADD_ALL
public static final HazelcastSetEndpointBuilderFactory.HazelcastOperation ADD_ALL
-
REMOVE_ALL
public static final HazelcastSetEndpointBuilderFactory.HazelcastOperation REMOVE_ALL
-
RETAIN_ALL
public static final HazelcastSetEndpointBuilderFactory.HazelcastOperation RETAIN_ALL
-
EVICT
public static final HazelcastSetEndpointBuilderFactory.HazelcastOperation EVICT
-
EVICT_ALL
public static final HazelcastSetEndpointBuilderFactory.HazelcastOperation EVICT_ALL
-
VALUE_COUNT
public static final HazelcastSetEndpointBuilderFactory.HazelcastOperation VALUE_COUNT
-
CONTAINS_KEY
public static final HazelcastSetEndpointBuilderFactory.HazelcastOperation CONTAINS_KEY
-
CONTAINS_VALUE
public static final HazelcastSetEndpointBuilderFactory.HazelcastOperation CONTAINS_VALUE
-
GET_KEYS
public static final HazelcastSetEndpointBuilderFactory.HazelcastOperation GET_KEYS
-
REMOVE_VALUE
public static final HazelcastSetEndpointBuilderFactory.HazelcastOperation REMOVE_VALUE
-
INCREMENT
public static final HazelcastSetEndpointBuilderFactory.HazelcastOperation INCREMENT
-
DECREMENT
public static final HazelcastSetEndpointBuilderFactory.HazelcastOperation DECREMENT
-
SET_VALUE
public static final HazelcastSetEndpointBuilderFactory.HazelcastOperation SET_VALUE
-
DESTROY
public static final HazelcastSetEndpointBuilderFactory.HazelcastOperation DESTROY
-
COMPARE_AND_SET
public static final HazelcastSetEndpointBuilderFactory.HazelcastOperation COMPARE_AND_SET
-
GET_AND_ADD
public static final HazelcastSetEndpointBuilderFactory.HazelcastOperation GET_AND_ADD
-
ADD
public static final HazelcastSetEndpointBuilderFactory.HazelcastOperation ADD
-
OFFER
public static final HazelcastSetEndpointBuilderFactory.HazelcastOperation OFFER
-
PEEK
public static final HazelcastSetEndpointBuilderFactory.HazelcastOperation PEEK
-
POLL
public static final HazelcastSetEndpointBuilderFactory.HazelcastOperation POLL
-
REMAINING_CAPACITY
public static final HazelcastSetEndpointBuilderFactory.HazelcastOperation REMAINING_CAPACITY
-
DRAIN_TO
public static final HazelcastSetEndpointBuilderFactory.HazelcastOperation DRAIN_TO
-
REMOVE_IF
public static final HazelcastSetEndpointBuilderFactory.HazelcastOperation REMOVE_IF
-
TAKE
public static final HazelcastSetEndpointBuilderFactory.HazelcastOperation TAKE
-
PUBLISH
public static final HazelcastSetEndpointBuilderFactory.HazelcastOperation PUBLISH
-
READ_ONCE_HEAD
public static final HazelcastSetEndpointBuilderFactory.HazelcastOperation READ_ONCE_HEAD
-
READ_ONCE_TAIL
public static final HazelcastSetEndpointBuilderFactory.HazelcastOperation READ_ONCE_TAIL
-
CAPACITY
public static final HazelcastSetEndpointBuilderFactory.HazelcastOperation CAPACITY
-
-
Method Detail
-
values
public static HazelcastSetEndpointBuilderFactory.HazelcastOperation[] 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 (HazelcastSetEndpointBuilderFactory.HazelcastOperation c : HazelcastSetEndpointBuilderFactory.HazelcastOperation.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static HazelcastSetEndpointBuilderFactory.HazelcastOperation 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
-
-