Package org.msgpack.value
Interface BooleanValue
-
- All Superinterfaces:
Value
- All Known Subinterfaces:
ImmutableBooleanValue
- All Known Implementing Classes:
ImmutableBooleanValueImpl
public interface BooleanValue extends Value
Representation MessagePack's Boolean type. MessagePack's Boolean type can representtrue
orfalse
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
getBoolean()
Returns the value as aboolean
.-
Methods inherited from interface org.msgpack.value.Value
asArrayValue, asBinaryValue, asBooleanValue, asExtensionValue, asFloatValue, asIntegerValue, asMapValue, asNilValue, asNumberValue, asRawValue, asStringValue, equals, getValueType, immutableValue, isArrayValue, isBinaryValue, isBooleanValue, isExtensionValue, isFloatValue, isIntegerValue, isMapValue, isNilValue, isNumberValue, isRawValue, isStringValue, toJson, writeTo
-
-