com.hazelcast.map.impl.client
Enum AbstractTxnMapRequest.TxnMapRequestType

java.lang.Object
  extended by java.lang.Enum<AbstractTxnMapRequest.TxnMapRequestType>
      extended by com.hazelcast.map.impl.client.AbstractTxnMapRequest.TxnMapRequestType
All Implemented Interfaces:
Serializable, Comparable<AbstractTxnMapRequest.TxnMapRequestType>
Enclosing class:
AbstractTxnMapRequest

public static enum AbstractTxnMapRequest.TxnMapRequestType
extends Enum<AbstractTxnMapRequest.TxnMapRequestType>


Enum Constant Summary
CONTAINS_KEY
           
DELETE
           
GET
           
GET_FOR_UPDATE
           
KEYSET
           
KEYSET_BY_PREDICATE
           
PUT
           
PUT_IF_ABSENT
           
PUT_WITH_TTL
           
REMOVE
           
REMOVE_IF_SAME
           
REPLACE
           
REPLACE_IF_SAME
           
SET
           
SIZE
           
VALUES
           
VALUES_BY_PREDICATE
           
 
Method Summary
static AbstractTxnMapRequest.TxnMapRequestType getByType(int type)
           
static AbstractTxnMapRequest.TxnMapRequestType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static AbstractTxnMapRequest.TxnMapRequestType[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

CONTAINS_KEY

public static final AbstractTxnMapRequest.TxnMapRequestType CONTAINS_KEY

GET

public static final AbstractTxnMapRequest.TxnMapRequestType GET

SIZE

public static final AbstractTxnMapRequest.TxnMapRequestType SIZE

PUT

public static final AbstractTxnMapRequest.TxnMapRequestType PUT

PUT_IF_ABSENT

public static final AbstractTxnMapRequest.TxnMapRequestType PUT_IF_ABSENT

REPLACE

public static final AbstractTxnMapRequest.TxnMapRequestType REPLACE

REPLACE_IF_SAME

public static final AbstractTxnMapRequest.TxnMapRequestType REPLACE_IF_SAME

SET

public static final AbstractTxnMapRequest.TxnMapRequestType SET

REMOVE

public static final AbstractTxnMapRequest.TxnMapRequestType REMOVE

DELETE

public static final AbstractTxnMapRequest.TxnMapRequestType DELETE

REMOVE_IF_SAME

public static final AbstractTxnMapRequest.TxnMapRequestType REMOVE_IF_SAME

KEYSET

public static final AbstractTxnMapRequest.TxnMapRequestType KEYSET

KEYSET_BY_PREDICATE

public static final AbstractTxnMapRequest.TxnMapRequestType KEYSET_BY_PREDICATE

VALUES

public static final AbstractTxnMapRequest.TxnMapRequestType VALUES

VALUES_BY_PREDICATE

public static final AbstractTxnMapRequest.TxnMapRequestType VALUES_BY_PREDICATE

GET_FOR_UPDATE

public static final AbstractTxnMapRequest.TxnMapRequestType GET_FOR_UPDATE

PUT_WITH_TTL

public static final AbstractTxnMapRequest.TxnMapRequestType PUT_WITH_TTL
Method Detail

values

public static AbstractTxnMapRequest.TxnMapRequestType[] 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 (AbstractTxnMapRequest.TxnMapRequestType c : AbstractTxnMapRequest.TxnMapRequestType.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static AbstractTxnMapRequest.TxnMapRequestType 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 name
NullPointerException - if the argument is null

getByType

public static AbstractTxnMapRequest.TxnMapRequestType getByType(int type)


Copyright © 2015 Hazelcast, Inc.. All Rights Reserved.