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