-
public interface MapBuffer.Entry
Iterable entry representing parsed MapBuffer values
-
-
Method Summary
Modifier and Type Method Description abstract Integer
getKey()
Key of the given entry. abstract MapBuffer.DataType
getType()
Parsed DataType of the entry abstract Boolean
getBooleanValue()
Entry value represented as Boolean abstract Integer
getIntValue()
Entry value represented as Int abstract Double
getDoubleValue()
Entry value represented as Double abstract String
getStringValue()
Entry value represented as String abstract MapBuffer
getMapBufferValue()
Entry value represented as MapBuffer -
-
Method Detail
-
getKey
abstract Integer getKey()
Key of the given entry. Usually represented as 2 byte unsigned integer with the value range of [0,65536)
-
getType
abstract MapBuffer.DataType getType()
Parsed DataType of the entry
-
getBooleanValue
abstract Boolean getBooleanValue()
Entry value represented as Boolean
-
getIntValue
abstract Integer getIntValue()
Entry value represented as Int
-
getDoubleValue
abstract Double getDoubleValue()
Entry value represented as Double
-
getStringValue
abstract String getStringValue()
Entry value represented as String
-
getMapBufferValue
abstract MapBuffer getMapBufferValue()
Entry value represented as MapBuffer
-
-
-
-