public enum DataProviderType extends Enum<DataProviderType>
| Enum Constant and Description |
|---|
dataProvider |
lazyDataProvider |
streamingDataProvider |
| Modifier and Type | Field and Description |
|---|---|
static String |
DATA_PROVIDER_TYPE_PREFIX |
| Modifier and Type | Method and Description |
|---|---|
static DataProviderType |
fromType(String type) |
String |
getType() |
static boolean |
isDataProviderType(String type) |
static DataProviderType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DataProviderType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataProviderType dataProvider
public static final DataProviderType lazyDataProvider
public static final DataProviderType streamingDataProvider
public static final String DATA_PROVIDER_TYPE_PREFIX
public static DataProviderType[] values()
for (DataProviderType c : DataProviderType.values()) System.out.println(c);
public static DataProviderType 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 getType()
public static boolean isDataProviderType(String type)
public static DataProviderType fromType(String type)
Copyright © 2015. All rights reserved.