Package com.smartsheet.api.models
Class BooleanObjectValue
- java.lang.Object
-
- com.smartsheet.api.models.BooleanObjectValue
-
- All Implemented Interfaces:
ObjectValue
,PrimitiveObjectValue<java.lang.Boolean>
public class BooleanObjectValue extends java.lang.Object implements PrimitiveObjectValue<java.lang.Boolean>
-
-
Constructor Summary
Constructors Constructor Description BooleanObjectValue()
BooleanObjectValue(java.lang.Boolean value)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ObjectValueType
getObjectType()
Get the objectValue typejava.lang.Boolean
getValue()
void
serialize(com.fasterxml.jackson.core.JsonGenerator jsonGenerator)
BooleanObjectValue
setValue(java.lang.Boolean value)
Set the value
-
-
-
Method Detail
-
getValue
public java.lang.Boolean getValue()
- Specified by:
getValue
in interfacePrimitiveObjectValue<java.lang.Boolean>
-
setValue
public BooleanObjectValue setValue(java.lang.Boolean value)
Set the value- Specified by:
setValue
in interfacePrimitiveObjectValue<java.lang.Boolean>
-
serialize
public void serialize(com.fasterxml.jackson.core.JsonGenerator jsonGenerator) throws java.io.IOException
- Specified by:
serialize
in interfacePrimitiveObjectValue<java.lang.Boolean>
- Throws:
java.io.IOException
-
getObjectType
public ObjectValueType getObjectType()
Description copied from interface:ObjectValue
Get the objectValue type- Specified by:
getObjectType
in interfaceObjectValue
- Returns:
- objectType;
-
-