Class OptionalDoubleExternalizer
- java.lang.Object
-
- org.wildfly.clustering.marshalling.spi.util.OptionalDoubleExternalizer
-
- All Implemented Interfaces:
Externalizer<OptionalDouble>
public class OptionalDoubleExternalizer extends Object implements Externalizer<OptionalDouble>
Externalizer for anOptionalDouble.- Author:
- Paul Ferraro
-
-
Constructor Summary
Constructors Constructor Description OptionalDoubleExternalizer()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Class<OptionalDouble>getTargetClass()OptionalDoublereadObject(ObjectInput input)OptionalIntsize(OptionalDouble value)voidwriteObject(ObjectOutput output, OptionalDouble value)
-
-
-
Method Detail
-
writeObject
public void writeObject(ObjectOutput output, OptionalDouble value) throws IOException
- Specified by:
writeObjectin interfaceExternalizer<OptionalDouble>- Throws:
IOException
-
readObject
public OptionalDouble readObject(ObjectInput input) throws IOException, ClassNotFoundException
- Specified by:
readObjectin interfaceExternalizer<OptionalDouble>- Throws:
IOExceptionClassNotFoundException
-
size
public OptionalInt size(OptionalDouble value)
- Specified by:
sizein interfaceExternalizer<OptionalDouble>
-
getTargetClass
public Class<OptionalDouble> getTargetClass()
- Specified by:
getTargetClassin interfaceExternalizer<OptionalDouble>
-
-