Class Encoders.DateEncoder
java.lang.Object
com.inductiveautomation.ignition.common.xmlserialization.encoding.Encoders
com.inductiveautomation.ignition.common.xmlserialization.encoding.Encoders.DateEncoder
- All Implemented Interfaces:
ArrayElementEncoder
,AttributeEncoder
,Encoder
- Enclosing class:
- Encoders
-
Nested Class Summary
Nested classes/interfaces inherited from class com.inductiveautomation.ignition.common.xmlserialization.encoding.Encoders
Encoders.BoolEncoder, Encoders.ByteEncoder, Encoders.ClassEncoder, Encoders.ColorEncoder, Encoders.DateEncoder, Encoders.DoubleEncoder, Encoders.FloatEncoder, Encoders.IntEncoder, Encoders.LongEncoder, Encoders.QualityCodeEncoder, Encoders.ShortEncoder, Encoders.SignatureEncoder, Encoders.StringEncoder, Encoders.UUIDEncoder
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionint
Report the number of bytes that a call toEncoder.objectToBinary(DataOutput, XMLSerializationContext, StringEncodingTable)
will put on the output streamvoid
objectToBinary
(DataOutput out, XMLSerializationContext context, StringEncodingTable stringTable) Encode the object as binary data by writing it to the provided DataOutput.void
objectToString
(Writer out, XMLSerializationContext context) Encode the object as character data by writing it to the provided Writer.void
resetObject
(Object obj) Used to re-use this encoder for a different objectMethods inherited from class com.inductiveautomation.ignition.common.xmlserialization.encoding.Encoders
forBoolean, forByte, forClass, forColor, forDate, forDouble, forFloat, forInt, forLong, forQualityCode, forShort, forSignature, forString, getCodecType
-
Field Details
-
FACTORY
-
-
Constructor Details
-
DateEncoder
-
-
Method Details
-
objectToString
Description copied from interface:Encoder
Encode the object as character data by writing it to the provided Writer.- Throws:
IOException
-
objectToBinary
public void objectToBinary(DataOutput out, XMLSerializationContext context, StringEncodingTable stringTable) throws IOException Description copied from interface:Encoder
Encode the object as binary data by writing it to the provided DataOutput. It is preferrable not to write String data to the DataOutput, but instead use the string table to get an ID for the string, and write the ID instead. All strings that are given IDs will be written in a shared string pool.- Throws:
IOException
-
getBinaryLength
public int getBinaryLength()Description copied from interface:Encoder
Report the number of bytes that a call toEncoder.objectToBinary(DataOutput, XMLSerializationContext, StringEncodingTable)
will put on the output stream -
resetObject
Description copied from interface:ArrayElementEncoder
Used to re-use this encoder for a different object
-