public static enum DataConnector.TYPE extends Enum<DataConnector.TYPE>
Enum Constant and Description |
---|
none
No data connector.
|
props
A data connector aims at handling Java Properties.
|
raw
A data connector aims at handling Java Strings.
|
Modifier and Type | Method and Description |
---|---|
static DataConnector.TYPE |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DataConnector.TYPE[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataConnector.TYPE props
public static final DataConnector.TYPE raw
public static final DataConnector.TYPE none
public static DataConnector.TYPE[] values()
for (DataConnector.TYPE c : DataConnector.TYPE.values()) System.out.println(c);
public static DataConnector.TYPE 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 nullPlealog Software - 2003-2017