public static enum ICubeProviderServer.Requirement extends java.lang.Enum<ICubeProviderServer.Requirement>
null is acceptable in those cases| Enum Constant and Description |
|---|
GENERATE
Generate the cube/column, if necessary
|
GET_CACHED
Only retrieve the cube/column if it is already cached
|
LIGHT
Generate lighting information for the cube, if necessary
|
LOAD
Load the cube/column from disk, if necessary
|
POPULATE
Populate the cube/column, if necessary
|
| Modifier and Type | Method and Description |
|---|---|
static ICubeProviderServer.Requirement |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ICubeProviderServer.Requirement[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ICubeProviderServer.Requirement GET_CACHED
public static final ICubeProviderServer.Requirement LOAD
public static final ICubeProviderServer.Requirement GENERATE
public static final ICubeProviderServer.Requirement POPULATE
public static final ICubeProviderServer.Requirement LIGHT
public static ICubeProviderServer.Requirement[] values()
for (ICubeProviderServer.Requirement c : ICubeProviderServer.Requirement.values()) System.out.println(c);
public static ICubeProviderServer.Requirement valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null