Class CLValueOption
- java.lang.Object
-
- com.syntifi.casper.sdk.model.clvalue.AbstractCLValue<java.util.Optional<AbstractCLValue<?,?>>,CLTypeOption>
-
- com.syntifi.casper.sdk.model.clvalue.CLValueOption
-
- All Implemented Interfaces:
DecodableValue
,EncodableValue
public class CLValueOption extends AbstractCLValue<java.util.Optional<AbstractCLValue<?,?>>,CLTypeOption>
Casper Option CLValue implementation- Since:
- 0.0.1
- See Also:
AbstractCLValue
-
-
Constructor Summary
Constructors Constructor Description CLValueOption()
CLValueOption(java.util.Optional<AbstractCLValue<?,?>> value)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected boolean
canEqual(java.lang.Object other)
void
decode(CLValueDecoder clvd)
Called when the object's values must be decoded after deserializingvoid
encode(CLValueEncoder clve)
Called when the object's values must be encoded for serializingboolean
equals(java.lang.Object o)
CLTypeOption
getClType()
int
hashCode()
void
setClType(CLTypeOption clType)
-
Methods inherited from class com.syntifi.casper.sdk.model.clvalue.AbstractCLValue
getBytes, getJsonBytes, getParsed, getValue, setBytes, setJsonBytes, setParsed, setValue
-
-
-
-
Constructor Detail
-
CLValueOption
public CLValueOption()
-
CLValueOption
public CLValueOption(java.util.Optional<AbstractCLValue<?,?>> value)
-
-
Method Detail
-
encode
public void encode(CLValueEncoder clve) throws java.io.IOException, CLValueEncodeException, DynamicInstanceException, NoSuchTypeException
Description copied from interface:EncodableValue
Called when the object's values must be encoded for serializing- Parameters:
clve
- the encoder to be used- Throws:
java.io.IOException
CLValueEncodeException
DynamicInstanceException
NoSuchTypeException
-
decode
public void decode(CLValueDecoder clvd) throws java.io.IOException, CLValueDecodeException, DynamicInstanceException, NoSuchTypeException
Description copied from interface:DecodableValue
Called when the object's values must be decoded after deserializing- Parameters:
clvd
- the decoder to be used- Throws:
java.io.IOException
CLValueDecodeException
DynamicInstanceException
NoSuchTypeException
-
getClType
public CLTypeOption getClType()
- Specified by:
getClType
in classAbstractCLValue<java.util.Optional<AbstractCLValue<?,?>>,CLTypeOption>
-
setClType
public void setClType(CLTypeOption clType)
- Specified by:
setClType
in classAbstractCLValue<java.util.Optional<AbstractCLValue<?,?>>,CLTypeOption>
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equals
in classAbstractCLValue<java.util.Optional<AbstractCLValue<?,?>>,CLTypeOption>
-
canEqual
protected boolean canEqual(java.lang.Object other)
- Overrides:
canEqual
in classAbstractCLValue<java.util.Optional<AbstractCLValue<?,?>>,CLTypeOption>
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classAbstractCLValue<java.util.Optional<AbstractCLValue<?,?>>,CLTypeOption>
-
-