public interface IValueDeserializer
Modifier and Type | Method and Description |
---|---|
boolean |
getBoolean()
Retrieves a
boolean value from the underlying data source. |
byte |
getByte()
Retrieves a
byte value from the underlying data source. |
char |
getChar()
Retrieves a
char value from the underlying data source. |
double |
getDouble()
Retrieves a
double value from the underlying data source. |
<T extends java.lang.Enum<T>> |
getEnumeration(java.lang.Class<T> clazz)
Retrieves a
Enumeration value from the underlying data source. |
float |
getFloat()
Retrieves a
float value from the underlying data source. |
int |
getInt()
Retrieves an
int value from the underlying data source. |
long |
getLong()
Retrieves a
long value from the underlying data source. |
short |
getShort()
Retrieves a
short value from the underlying data source. |
java.lang.String |
getString()
Retrieves a
String value from the underlying data source. |
boolean getBoolean()
boolean
value from the underlying data source.byte getByte() throws java.lang.NumberFormatException
byte
value from the underlying data source.java.lang.NumberFormatException
- on format errorschar getChar()
char
value from the underlying data source.short getShort() throws java.lang.NumberFormatException
short
value from the underlying data source.java.lang.NumberFormatException
- on format errorsint getInt() throws java.lang.NumberFormatException
int
value from the underlying data source.java.lang.NumberFormatException
- on format errorslong getLong() throws java.lang.NumberFormatException
long
value from the underlying data source.java.lang.NumberFormatException
- on format errorsfloat getFloat() throws java.lang.NumberFormatException
float
value from the underlying data source.java.lang.NumberFormatException
- on format errorsdouble getDouble() throws java.lang.NumberFormatException
double
value from the underlying data source.java.lang.NumberFormatException
- on format errorsjava.lang.String getString()
String
value from the underlying data source.<T extends java.lang.Enum<T>> T getEnumeration(java.lang.Class<T> clazz) throws RecordInstantiationException
Enumeration
value from the underlying data source.T
- the corresponding enumeration typeclazz
- enumeration type to be usedRecordInstantiationException
- in case the received ordinal does not exist in the specified enumeration typeRecordInstantiationException
- input errorsCopyright 2020 Kieker Project, http://kieker-monitoring.net