public interface IValueSerializer
Modifier and Type | Method and Description |
---|---|
void |
putBoolean(boolean value)
Stores a
boolean value in the underlying data store. |
void |
putByte(byte value)
Stores a
byte value in the underlying data store. |
void |
putBytes(byte[] value)
Stores raw data in the underlying data store.
|
void |
putChar(char value)
Stores a
char value in the underlying data store. |
void |
putDouble(double value)
Stores a
double value in the underlying data store. |
void |
putFloat(float value)
Stores a
float value in the underlying data store. |
void |
putInt(int value)
Stores an
int value in the underlying data store. |
void |
putLong(long value)
Stores a
long value in the underlying data store. |
void |
putShort(short value)
Stores a
short value in the underlying data store. |
void |
putString(java.lang.String value)
Stores a
String value in the underlying data store. |
void putBoolean(boolean value)
boolean
value in the underlying data store.value
- The value to storevoid putByte(byte value)
byte
value in the underlying data store.value
- The value to storevoid putChar(char value)
char
value in the underlying data store.value
- The value to storevoid putShort(short value)
short
value in the underlying data store.value
- The value to storevoid putInt(int value)
int
value in the underlying data store.value
- The value to storevoid putLong(long value)
long
value in the underlying data store.value
- The value to storevoid putFloat(float value)
float
value in the underlying data store.value
- The value to storevoid putDouble(double value)
double
value in the underlying data store.value
- The value to storevoid putBytes(byte[] value)
value
- The data to storevoid putString(java.lang.String value)
String
value in the underlying data store.value
- The value to storeCopyright 2017 Kieker Project, http://kieker-monitoring.net