public interface ConfigRO extends ConfigBaseRO, TreeNode, Iterable<String>
Config
objects.
In addition, it implements the TreeNode
and
Iterable
interface.Modifier and Type | Method and Description |
---|---|
Config |
getConfig(String key)
Returns a
Config for the given key. |
DataCell |
getDataCell(String key)
Return DataCell for key.
|
DataCell |
getDataCell(String key,
DataCell def)
Return a DataCell which can be null, or the default value if the key is
not available.
|
DataCell[] |
getDataCellArray(String key)
Return DataCell array.
|
DataCell[] |
getDataCellArray(String key,
DataCell... def)
Return DataCell array which can be null for key, or the default array if
the key is not available.
|
DataType |
getDataType(String key)
Return DataType for key.
|
DataType |
getDataType(String key,
DataType def)
Return a DataType elements or null for key, or the default value if not
available.
|
DataType[] |
getDataTypeArray(String key)
Returns an array of DataType objects which can be null.
|
DataType[] |
getDataTypeArray(String key,
DataType... v)
Returns the array of DataType objects for the given key or if not
available the given array.
|
RowKey |
getRowKey(String key)
Return
RowKey for key. |
RowKey |
getRowKey(String key,
RowKey def)
Return a
RowKey which can be null, or the default value if
the key is not available. |
RowKey[] |
getRowKeyArray(String key)
Return
RowKey array for the given key. |
RowKey[] |
getRowKeyArray(String key,
RowKey... def)
Return a
RowKey array which can be null, or the default
value if the key is not available. |
Iterator<String> |
iterator() |
containsKey, copyTo, getBoolean, getBoolean, getBooleanArray, getBooleanArray, getByte, getByte, getByteArray, getByteArray, getChar, getChar, getCharArray, getCharArray, getConfigBase, getDouble, getDouble, getDoubleArray, getDoubleArray, getFloat, getFloat, getFloatArray, getFloatArray, getInt, getInt, getIntArray, getIntArray, getKey, getLong, getLong, getLongArray, getLongArray, getPassword, getPassword, getShort, getShort, getShortArray, getShortArray, getString, getString, getStringArray, getStringArray, getTransientString, keySet, saveToXML
forEach, spliterator
children, getAllowsChildren, getChildAt, getChildCount, getIndex, getParent, isLeaf
Config getConfig(String key) throws InvalidSettingsException
Config
for the given key.key
- The identifier for the Config
.Config
object.InvalidSettingsException
- If the Config could not be accessed.DataCell getDataCell(String key) throws InvalidSettingsException
key
- The key.InvalidSettingsException
- If the key is not available.RowKey getRowKey(String key) throws InvalidSettingsException
RowKey
for key.key
- the identifier used to store the RowKey
beforeRowKey
InvalidSettingsException
- if the key is not availableRowKey[] getRowKeyArray(String key) throws InvalidSettingsException
RowKey
array for the given key.key
- the identifier used to store the RowKey
array
beforeRowKey
arrayInvalidSettingsException
- if the key is not availableDataType getDataType(String key) throws InvalidSettingsException
key
- The key.InvalidSettingsException
- If the key is not available.DataCell getDataCell(String key, DataCell def)
key
- The key.def
- The default value, returned id the key is not available.RowKey getRowKey(String key, RowKey def)
RowKey
which can be null, or the default value if
the key is not available.key
- identifier used to store the RowKey
beforedef
- default value, returned if the key is not availableRowKey
RowKey[] getRowKeyArray(String key, RowKey... def)
RowKey
array which can be null, or the default
value if the key is not available.key
- identifier used to store the RowKey
array beforedef
- default value, returned if the key is not availableRowKey
arrayDataType getDataType(String key, DataType def)
key
- The key.def
- Returned if no value available for the given key.DataCell[] getDataCellArray(String key) throws InvalidSettingsException
key
- The key.InvalidSettingsException
- If the the key is not available.DataCell[] getDataCellArray(String key, DataCell... def)
key
- The key.def
- The default array returned if the key is not available.DataType[] getDataTypeArray(String key) throws InvalidSettingsException
key
- The key.InvalidSettingsException
- The the object is not available for the
given key.DataType[] getDataTypeArray(String key, DataType... v)
key
- The key.v
- The default array, returned if no entry available for the key.
KNIME GmbH, Konstanz, Germany
You may not modify, publish, transmit, transfer or sell, reproduce, create derivative works from, distribute, perform, display, or in any way exploit any of the content, in whole or in part, except as otherwise expressly permitted in writing by the copyright owner or as specified in the license file distributed with this product.