Class CLValueAny
- java.lang.Object
-
- com.syntifi.casper.sdk.model.clvalue.AbstractCLValue<java.lang.Object,CLTypeAny>
-
- com.syntifi.casper.sdk.model.clvalue.CLValueAny
-
- All Implemented Interfaces:
DecodableValue
,EncodableValue
public class CLValueAny extends AbstractCLValue<java.lang.Object,CLTypeAny>
Casper Object CLValue implementation- Since:
- 0.0.1
- See Also:
AbstractCLValue
-
-
Constructor Summary
Constructors Constructor Description CLValueAny()
CLValueAny(java.lang.Object 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)
CLTypeAny
getClType()
protected java.lang.String
getJsonClType()
int
hashCode()
void
setClType(CLTypeAny clType)
protected void
setJsonClType(CLTypeAny clType)
-
Methods inherited from class com.syntifi.casper.sdk.model.clvalue.AbstractCLValue
getBytes, getJsonBytes, getParsed, getValue, setBytes, setJsonBytes, setParsed, setValue
-
-
-
-
Method Detail
-
setJsonClType
@ExcludeFromJacocoGeneratedReport protected void setJsonClType(CLTypeAny clType)
-
getJsonClType
@ExcludeFromJacocoGeneratedReport protected java.lang.String getJsonClType()
-
encode
public void encode(CLValueEncoder clve) throws java.io.IOException
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
-
decode
public void decode(CLValueDecoder clvd) throws java.io.IOException, CLValueDecodeException
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
-
getClType
public CLTypeAny getClType()
- Specified by:
getClType
in classAbstractCLValue<java.lang.Object,CLTypeAny>
-
setClType
public void setClType(CLTypeAny clType)
- Specified by:
setClType
in classAbstractCLValue<java.lang.Object,CLTypeAny>
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equals
in classAbstractCLValue<java.lang.Object,CLTypeAny>
-
canEqual
protected boolean canEqual(java.lang.Object other)
- Overrides:
canEqual
in classAbstractCLValue<java.lang.Object,CLTypeAny>
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classAbstractCLValue<java.lang.Object,CLTypeAny>
-
-