|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<ConfigEntries>
org.knime.core.node.config.ConfigEntries
enum ConfigEntries
An enumeration holding all possible types that can be written to and read from a Config. All entries have to be defined inside the corresponding DTD.
Enum Constant Summary | |
---|---|
config
Entry of type sub config. |
|
xboolean
Entry of type boolean. |
|
xbyte
Entry of type byte. |
|
xchar
Entry of type char. |
|
xdouble
Entry of type double. |
|
xfloat
Entry of type float. |
|
xint
Entry of type int. |
|
xlong
Entry of type long. |
|
xshort
Entry of type short. |
|
xstring
Entry of type String. |
Method Summary | |
---|---|
(package private) abstract AbstractConfigEntry |
createEntry(String key,
String value)
Creates a new Config entry from String. |
static ConfigEntries |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static ConfigEntries[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final ConfigEntries xstring
public static final ConfigEntries xint
public static final ConfigEntries xdouble
public static final ConfigEntries xfloat
public static final ConfigEntries xlong
public static final ConfigEntries xshort
public static final ConfigEntries xbyte
public static final ConfigEntries xchar
public static final ConfigEntries xboolean
public static final ConfigEntries config
Method Detail |
---|
public static ConfigEntries[] values()
for (ConfigEntries c : ConfigEntries.values()) System.out.println(c);
public static ConfigEntries valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is nullabstract AbstractConfigEntry createEntry(String key, String value)
key
- The key for this value.value
- The value.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |