-
public interface MapBuffer.EntryIterable entry representing parsed MapBuffer values
-
-
Method Summary
Modifier and Type Method Description abstract IntegergetKey()Key of the given entry. abstract MapBuffer.DataTypegetType()Parsed DataType of the entry abstract BooleangetBooleanValue()Entry value represented as Boolean abstract IntegergetIntValue()Entry value represented as Int abstract DoublegetDoubleValue()Entry value represented as Double abstract StringgetStringValue()Entry value represented as String abstract MapBuffergetMapBufferValue()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
-
-
-
-