Package com.opencloud.rhino.cmp.codecs
Class SimpleDatatypeCodecs.BigDecimalCodec
- java.lang.Object
-
- com.opencloud.rhino.cmp.codecs.SimpleDatatypeCodecs.BigDecimalCodec
-
- All Implemented Interfaces:
DatatypeCodec<BigDecimal>
- Enclosing class:
- SimpleDatatypeCodecs
public static class SimpleDatatypeCodecs.BigDecimalCodec extends Object implements DatatypeCodec<BigDecimal>
Datatype codec for
BigDecimal.- Since:
- Rhino 2.5.0
-
-
Constructor Summary
Constructors Constructor Description BigDecimalCodec()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description BigDecimaldecode(DataInput in, ClassLoader cl, DecoderUtils utils)Decode a value from the given data input stream.voidencode(BigDecimal value, DataOutput out, EncoderUtils utils)Encode the specified value to the given data output stream.
-
-
-
Method Detail
-
encode
public void encode(BigDecimal value, DataOutput out, EncoderUtils utils) throws IOException
Description copied from interface:DatatypeCodecEncode the specified value to the given data output stream.
- Specified by:
encodein interfaceDatatypeCodec<BigDecimal>- Parameters:
value- the value to encode. This will never benull.out- the data output stream to encode the value to.utils- additional utility encoding functions that may be useful to the codec.- Throws:
IOException- if an I/O error occurs.
-
decode
public BigDecimal decode(DataInput in, ClassLoader cl, DecoderUtils utils) throws IOException
Description copied from interface:DatatypeCodecDecode a value from the given data input stream.
- Specified by:
decodein interfaceDatatypeCodec<BigDecimal>- Parameters:
in- the data input stream to decode the value from.cl- a classloader which can be used to load classes necessary to decode the value.utils- additional utility decoding functions that may be useful to the codec.- Returns:
- the decoded value.
- Throws:
IOException- if an I/O error occurs.
-
-