Class CLValueI32
- java.lang.Object
-
- com.syntifi.casper.sdk.model.clvalue.AbstractCLValue<java.lang.Integer,CLTypeI32>
-
- com.syntifi.casper.sdk.model.clvalue.CLValueI32
-
- All Implemented Interfaces:
DecodableValue,EncodableValue
public class CLValueI32 extends AbstractCLValue<java.lang.Integer,CLTypeI32>
Casper I32 CLValue implementation- Since:
- 0.0.1
- See Also:
AbstractCLValue
-
-
Constructor Summary
Constructors Constructor Description CLValueI32()CLValueI32(java.lang.Integer value)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected booleancanEqual(java.lang.Object other)voiddecode(CLValueDecoder clvd)Called when the object's values must be decoded after deserializingvoidencode(CLValueEncoder clve)Called when the object's values must be encoded for serializingbooleanequals(java.lang.Object o)CLTypeI32getClType()protected java.lang.StringgetJsonClType()inthashCode()voidsetClType(CLTypeI32 clType)protected voidsetJsonClType(CLTypeI32 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(CLTypeI32 clType)
-
getJsonClType
@ExcludeFromJacocoGeneratedReport protected java.lang.String getJsonClType()
-
encode
public void encode(CLValueEncoder clve) throws java.io.IOException
Description copied from interface:EncodableValueCalled 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:DecodableValueCalled when the object's values must be decoded after deserializing- Parameters:
clvd- the decoder to be used- Throws:
java.io.IOExceptionCLValueDecodeException
-
getClType
public CLTypeI32 getClType()
- Specified by:
getClTypein classAbstractCLValue<java.lang.Integer,CLTypeI32>
-
setClType
public void setClType(CLTypeI32 clType)
- Specified by:
setClTypein classAbstractCLValue<java.lang.Integer,CLTypeI32>
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equalsin classAbstractCLValue<java.lang.Integer,CLTypeI32>
-
canEqual
protected boolean canEqual(java.lang.Object other)
- Overrides:
canEqualin classAbstractCLValue<java.lang.Integer,CLTypeI32>
-
hashCode
public int hashCode()
- Overrides:
hashCodein classAbstractCLValue<java.lang.Integer,CLTypeI32>
-
-