Enum GridCacheAdapter.BulkOperation
- java.lang.Object
-
- java.lang.Enum<GridCacheAdapter.BulkOperation>
-
- org.apache.ignite.internal.processors.cache.GridCacheAdapter.BulkOperation
-
- All Implemented Interfaces:
Serializable,Comparable<GridCacheAdapter.BulkOperation>
- Enclosing class:
- GridCacheAdapter<K,V>
protected static enum GridCacheAdapter.BulkOperation extends Enum<GridCacheAdapter.BulkOperation>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleancanBlockTx(TransactionConcurrency concurrency, TransactionIsolation isolation)Stringtitle()static GridCacheAdapter.BulkOperationvalueOf(String name)Returns the enum constant of this type with the specified name.static GridCacheAdapter.BulkOperation[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
GET
public static final GridCacheAdapter.BulkOperation GET
-
PUT
public static final GridCacheAdapter.BulkOperation PUT
-
INVOKE
public static final GridCacheAdapter.BulkOperation INVOKE
-
REMOVE
public static final GridCacheAdapter.BulkOperation REMOVE
-
-
Method Detail
-
values
public static GridCacheAdapter.BulkOperation[] 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 (GridCacheAdapter.BulkOperation c : GridCacheAdapter.BulkOperation.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static GridCacheAdapter.BulkOperation 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
-
title
public String title()
-
canBlockTx
public boolean canBlockTx(TransactionConcurrency concurrency, TransactionIsolation isolation)
-
-