public static enum Database.ProviderType extends Enum<Database.ProviderType>
Enum Constant and Description |
---|
DMP
Designates providers which provide results optimized for
data mining operations.
|
MDP
Designates providers which provide results in the form of
multidimensional data sets.
|
TDP
Designates providers which provide results in the form of
tabular data sets.
|
Modifier and Type | Method and Description |
---|---|
String |
getDescription()
Provides a human readable description of the provider type.
|
static Database.ProviderType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Database.ProviderType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Database.ProviderType TDP
public static final Database.ProviderType MDP
public static final Database.ProviderType DMP
public static Database.ProviderType[] values()
for (Database.ProviderType c : Database.ProviderType.values()) System.out.println(c);
public static Database.ProviderType 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 nullpublic String getDescription()