Enum HazelcastOperation
- java.lang.Object
-
- java.lang.Enum<HazelcastOperation>
-
- org.apache.camel.component.hazelcast.HazelcastOperation
-
- All Implemented Interfaces:
Serializable,Comparable<HazelcastOperation>
public enum HazelcastOperation extends Enum<HazelcastOperation>
-
-
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 Instance Methods Concrete Methods Modifier and Type Method Description static HazelcastOperationgetHazelcastOperation(String name)StringtoString()static HazelcastOperationvalueOf(String name)Returns the enum constant of this type with the specified name.static 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 HazelcastOperation PUT
-
DELETE
public static final HazelcastOperation DELETE
-
GET
public static final HazelcastOperation GET
-
UPDATE
public static final HazelcastOperation UPDATE
-
QUERY
public static final HazelcastOperation QUERY
-
GET_ALL
public static final HazelcastOperation GET_ALL
-
CLEAR
public static final HazelcastOperation CLEAR
-
PUT_IF_ABSENT
public static final HazelcastOperation PUT_IF_ABSENT
-
ADD_ALL
public static final HazelcastOperation ADD_ALL
-
REMOVE_ALL
public static final HazelcastOperation REMOVE_ALL
-
RETAIN_ALL
public static final HazelcastOperation RETAIN_ALL
-
EVICT
public static final HazelcastOperation EVICT
-
EVICT_ALL
public static final HazelcastOperation EVICT_ALL
-
VALUE_COUNT
public static final HazelcastOperation VALUE_COUNT
-
CONTAINS_KEY
public static final HazelcastOperation CONTAINS_KEY
-
CONTAINS_VALUE
public static final HazelcastOperation CONTAINS_VALUE
-
GET_KEYS
public static final HazelcastOperation GET_KEYS
-
REMOVE_VALUE
public static final HazelcastOperation REMOVE_VALUE
-
INCREMENT
public static final HazelcastOperation INCREMENT
-
DECREMENT
public static final HazelcastOperation DECREMENT
-
SET_VALUE
public static final HazelcastOperation SET_VALUE
-
DESTROY
public static final HazelcastOperation DESTROY
-
COMPARE_AND_SET
public static final HazelcastOperation COMPARE_AND_SET
-
GET_AND_ADD
public static final HazelcastOperation GET_AND_ADD
-
ADD
public static final HazelcastOperation ADD
-
OFFER
public static final HazelcastOperation OFFER
-
PEEK
public static final HazelcastOperation PEEK
-
POLL
public static final HazelcastOperation POLL
-
REMAINING_CAPACITY
public static final HazelcastOperation REMAINING_CAPACITY
-
DRAIN_TO
public static final HazelcastOperation DRAIN_TO
-
REMOVE_IF
public static final HazelcastOperation REMOVE_IF
-
TAKE
public static final HazelcastOperation TAKE
-
PUBLISH
public static final HazelcastOperation PUBLISH
-
READ_ONCE_HEAD
public static final HazelcastOperation READ_ONCE_HEAD
-
READ_ONCE_TAIL
public static final HazelcastOperation READ_ONCE_TAIL
-
CAPACITY
public static final HazelcastOperation CAPACITY
-
-
Method Detail
-
values
public static 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 (HazelcastOperation c : 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 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
-
getHazelcastOperation
public static HazelcastOperation getHazelcastOperation(String name)
-
toString
public String toString()
- Overrides:
toStringin classEnum<HazelcastOperation>
-
-