Class BigIntegerSerializer
- java.lang.Object
-
- net.sf.jasperreports.engine.virtualization.BigIntegerSerializer
-
- All Implemented Interfaces:
ObjectSerializer<BigInteger>
public class BigIntegerSerializer extends Object implements ObjectSerializer<BigInteger>
- Author:
- Lucian Chirita (lucianc@users.sourceforge.net)
-
-
Constructor Summary
Constructors Constructor Description BigIntegerSerializer()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ReferenceType
defaultReferenceType()
boolean
defaultStoreReference()
BigInteger
read(VirtualizationInput in)
int
typeValue()
void
write(BigInteger value, VirtualizationOutput out)
-
-
-
Method Detail
-
typeValue
public int typeValue()
- Specified by:
typeValue
in interfaceObjectSerializer<BigInteger>
-
defaultReferenceType
public ReferenceType defaultReferenceType()
- Specified by:
defaultReferenceType
in interfaceObjectSerializer<BigInteger>
-
defaultStoreReference
public boolean defaultStoreReference()
- Specified by:
defaultStoreReference
in interfaceObjectSerializer<BigInteger>
-
write
public void write(BigInteger value, VirtualizationOutput out) throws IOException
- Specified by:
write
in interfaceObjectSerializer<BigInteger>
- Throws:
IOException
-
read
public BigInteger read(VirtualizationInput in) throws IOException
- Specified by:
read
in interfaceObjectSerializer<BigInteger>
- Throws:
IOException
-
-