public enum GridProductEdition extends Enum<GridProductEdition>
| Enum Constant and Description |
|---|
DATA_GRID
In-Memory Data Grid.
|
HADOOP
In-Memory Accelerator For Hadoop.
|
HPC
In-Memory HPC.
|
MONGO
In-Memory Accelerator For MongoDB.
|
PLATFORM
Platform edition which contains all functionality from other editions.
|
STREAMING
In-Memory Streaming.
|
| Modifier and Type | Method and Description |
|---|---|
static GridProductEdition |
fromOrdinal(int ord)
Efficiently gets enumerated value from its ordinal.
|
static GridProductEdition |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GridProductEdition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GridProductEdition HPC
public static final GridProductEdition DATA_GRID
public static final GridProductEdition STREAMING
public static final GridProductEdition HADOOP
public static final GridProductEdition MONGO
public static final GridProductEdition PLATFORM
public static GridProductEdition[] values()
for (GridProductEdition c : GridProductEdition.values()) System.out.println(c);
public static GridProductEdition 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 GridProductEdition fromOrdinal(int ord)
ord - Ordinal value.null if ordinal out of range.Copyright © 2014. All rights reserved.