public enum GridDrSenderHubStoreOverflowMode extends Enum<GridDrSenderHubStoreOverflowMode>
| Enum Constant and Description |
|---|
REMOVE_OLDEST
Removes oldest entries.
|
STOP
Stops accepting data in store.
|
| Modifier and Type | Method and Description |
|---|---|
static GridDrSenderHubStoreOverflowMode |
fromOrdinal(int ord)
Efficiently gets enumerated value from its ordinal.
|
static GridDrSenderHubStoreOverflowMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GridDrSenderHubStoreOverflowMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GridDrSenderHubStoreOverflowMode REMOVE_OLDEST
public static final GridDrSenderHubStoreOverflowMode STOP
public static GridDrSenderHubStoreOverflowMode[] values()
for (GridDrSenderHubStoreOverflowMode c : GridDrSenderHubStoreOverflowMode.values()) System.out.println(c);
public static GridDrSenderHubStoreOverflowMode 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 GridDrSenderHubStoreOverflowMode fromOrdinal(int ord)
ord - Ordinal value.null if ordinal out of range.Copyright © 2014. All rights reserved.