|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface ConfigWO
Write-only interface for Config
objects providing only access
functions.
Method Summary | |
---|---|
void |
addBoolean(String key,
boolean value)
Adds this boolean value to the Config by the given key. |
void |
addBooleanArray(String key,
boolean... values)
Adds this boolean values to the Config by the given key. |
void |
addByte(String key,
byte value)
Adds this byte value to the Config by the given key. |
void |
addByteArray(String key,
byte... values)
Adds this byte array to the Config by the given key. |
void |
addChar(String key,
char value)
Adds this char value to the Config by the given key. |
void |
addCharArray(String key,
char... values)
Adds this char array to the Config by the given key. |
Config |
addConfig(String key)
Creates and adds a new Config to this Config
by the given key. |
void |
addDataCell(String key,
DataCell cell)
Adds this DataCell object to the Config by the given key. |
void |
addDataCellArray(String key,
DataCell... values)
Adds an array of DataCell objects to this Config. |
void |
addDataType(String key,
DataType type)
Adds this DataType object value to the Config by the given key. |
void |
addDataTypeArray(String key,
DataType... values)
Adds an array of DataType objects to this Config. |
void |
addDouble(String key,
double value)
Adds a double by the given key. |
void |
addDoubleArray(String key,
double... values)
Adds this double array value to the Config by the given key. |
void |
addFloat(String key,
float value)
Adds a float by the given key. |
void |
addFloatArray(String key,
float... values)
Adds this float array value to the Config by the given key. |
void |
addInt(String key,
int value)
Adds an int. |
void |
addIntArray(String key,
int... values)
Adds this int array to the Config by the given key. |
void |
addLong(String key,
long value)
Adds this long value to the Config by the given key. |
void |
addLongArray(String key,
long... values)
Adds this long array to the Config by the given key. |
void |
addRowKey(String key,
RowKey rowKey)
Adds this RowKey object to this Config by the given key. |
void |
addRowKeyArray(String key,
RowKey... rowKey)
Adds this RowKey array to this Config by the given key. |
void |
addShort(String key,
short value)
Adds this short value to the Config by the given key. |
void |
addShortArray(String key,
short... values)
Adds this short array to the Config by the given key. |
void |
addString(String key,
String value)
Adds this String object to the Config by the given key. |
void |
addStringArray(String key,
String... values)
Adds this array of String object to the Config by the given key. |
String |
getKey()
|
Method Detail |
---|
Config addConfig(String key)
Config
to this Config
by the given key.
key
- The key for the config to add.
Config
object.String getKey()
Config
.void addInt(String key, int value)
key
- The key.value
- The int value.void addDouble(String key, double value)
key
- The key.value
- The double value to add.void addFloat(String key, float value)
key
- The key.value
- The float value to add.void addChar(String key, char value)
key
- The key.value
- The char to add.void addShort(String key, short value)
key
- The key.value
- The short to add.void addLong(String key, long value)
key
- The key.value
- The long to add.void addByte(String key, byte value)
key
- The key.value
- The byte to add.void addString(String key, String value)
key
- The key.value
- The boolean to add.void addDataCell(String key, DataCell cell)
key
- The key.cell
- The DataCell to add.void addRowKey(String key, RowKey rowKey)
RowKey
object to this Config by the given key.
The row key can be null.
key
- identifier used to store and the load the RowKey
rowKey
- value to storevoid addRowKeyArray(String key, RowKey... rowKey)
RowKey
array to this Config by the given key.
The row key array can be null.
key
- identifier used to store and the load the RowKey
arrayrowKey
- array to storevoid addDataType(String key, DataType type)
key
- The key.type
- The DataType object to add.void addBoolean(String key, boolean value)
key
- The key.value
- The boolean to add.void addIntArray(String key, int... values)
key
- The key.values
- The int array to add.void addDoubleArray(String key, double... values)
key
- The key.values
- The double array to add.void addFloatArray(String key, float... values)
key
- The key.values
- The float array to add.void addByteArray(String key, byte... values)
key
- The key.values
- The byte array to add.void addShortArray(String key, short... values)
key
- The key.values
- The short to add.void addLongArray(String key, long... values)
key
- The key.values
- The long array to add.void addCharArray(String key, char... values)
key
- The key.values
- The char array to add.void addBooleanArray(String key, boolean... values)
key
- The key.values
- The boolean array to add.void addStringArray(String key, String... values)
key
- The key.values
- The String array to add.void addDataCellArray(String key, DataCell... values)
key
- The key.values
- The data cells, elements can be null.void addDataTypeArray(String key, DataType... values)
key
- The key.values
- The data types, elements can be null.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |