Class CLValueResult
- java.lang.Object
-
- com.syntifi.casper.sdk.model.clvalue.AbstractCLValue<CLValueResult.Result,CLTypeResult>
-
- com.syntifi.casper.sdk.model.clvalue.CLValueResult
-
- All Implemented Interfaces:
DecodableValue
,EncodableValue
public class CLValueResult extends AbstractCLValue<CLValueResult.Result,CLTypeResult>
Casper Result CLValue implementation- Since:
- 0.0.1
- See Also:
AbstractCLValue
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description protected class
CLValueResult.Result
`Result` with `Ok` and `Err` variants of `CLType`s.
-
Constructor Summary
Constructors Constructor Description CLValueResult()
CLValueResult(AbstractCLValue<?,?> ok, AbstractCLValue<?,?> err)
-
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)
CLTypeResult
getClType()
int
hashCode()
protected void
setChildTypes()
void
setClType(CLTypeResult clType)
-
Methods inherited from class com.syntifi.casper.sdk.model.clvalue.AbstractCLValue
getBytes, getJsonBytes, getParsed, getValue, setBytes, setJsonBytes, setParsed, setValue
-
-
-
-
Constructor Detail
-
CLValueResult
public CLValueResult(AbstractCLValue<?,?> ok, AbstractCLValue<?,?> err)
-
CLValueResult
public CLValueResult()
-
-
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
-
setChildTypes
protected void setChildTypes()
-
getClType
public CLTypeResult getClType()
- Specified by:
getClType
in classAbstractCLValue<CLValueResult.Result,CLTypeResult>
-
setClType
public void setClType(CLTypeResult clType)
- Specified by:
setClType
in classAbstractCLValue<CLValueResult.Result,CLTypeResult>
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equals
in classAbstractCLValue<CLValueResult.Result,CLTypeResult>
-
canEqual
protected boolean canEqual(java.lang.Object other)
- Overrides:
canEqual
in classAbstractCLValue<CLValueResult.Result,CLTypeResult>
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classAbstractCLValue<CLValueResult.Result,CLTypeResult>
-
-