public static enum IgniteCacheEndpointBuilderFactory.CachePeekMode extends Enum<IgniteCacheEndpointBuilderFactory.CachePeekMode>
org.apache.ignite.cache.CachePeekMode enum.| Enum Constant and Description |
|---|
ALL |
BACKUP |
NEAR |
OFFHEAP |
ONHEAP |
PRIMARY |
| Modifier and Type | Method and Description |
|---|---|
static IgniteCacheEndpointBuilderFactory.CachePeekMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IgniteCacheEndpointBuilderFactory.CachePeekMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IgniteCacheEndpointBuilderFactory.CachePeekMode ALL
public static final IgniteCacheEndpointBuilderFactory.CachePeekMode NEAR
public static final IgniteCacheEndpointBuilderFactory.CachePeekMode PRIMARY
public static final IgniteCacheEndpointBuilderFactory.CachePeekMode BACKUP
public static final IgniteCacheEndpointBuilderFactory.CachePeekMode ONHEAP
public static final IgniteCacheEndpointBuilderFactory.CachePeekMode OFFHEAP
public static IgniteCacheEndpointBuilderFactory.CachePeekMode[] values()
for (IgniteCacheEndpointBuilderFactory.CachePeekMode c : IgniteCacheEndpointBuilderFactory.CachePeekMode.values()) System.out.println(c);
public static IgniteCacheEndpointBuilderFactory.CachePeekMode valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullApache Camel