public enum GridDrPauseReason extends Enum<GridDrPauseReason>
| Enum Constant and Description |
|---|
BATCH_FAILED
All sender hubs failed to process batch.
|
NO_SND_HUBS
All sender hubs left.
|
USER_REQUEST
Method
GridCacheProjectionEx.drPause() was called. |
| Modifier and Type | Method and Description |
|---|---|
static GridDrPauseReason |
fromOrdinal(int ord)
Efficiently gets enumerated value from its ordinal.
|
static GridDrPauseReason |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GridDrPauseReason[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GridDrPauseReason USER_REQUEST
GridCacheProjectionEx.drPause() was called.public static final GridDrPauseReason BATCH_FAILED
public static final GridDrPauseReason NO_SND_HUBS
public static GridDrPauseReason[] values()
for (GridDrPauseReason c : GridDrPauseReason.values()) System.out.println(c);
public static GridDrPauseReason 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 null@Nullable public static GridDrPauseReason fromOrdinal(int ord)
ord - Ordinal value.null if ordinal out of range.Copyright © 2014. All rights reserved.