-
- All Implemented Interfaces:
-
com.batch.android.msgpack.value.Value
public interface BooleanValue implements Value
Representation MessagePack's Boolean type.
MessagePack's Boolean type can represent
{@code true}or{@code false}.
-
-
Method Summary
Modifier and Type Method Description abstract booleangetBoolean()Returns the value as a {@code boolean}.-
Methods inherited from class com.batch.android.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 -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
Method Detail
-
getBoolean
abstract boolean getBoolean()
Returns the value as a
{@code boolean}.
-
-
-
-