Package org.apache.poi.hwpf.usermodel
Class DateAndTime
- java.lang.Object
-
- org.apache.poi.hwpf.usermodel.DateAndTime
-
- All Implemented Interfaces:
org.apache.poi.common.Duplicatable
public final class DateAndTime extends java.lang.Object implements org.apache.poi.common.Duplicatable
This class is used to represent a date and time in a Word document.
-
-
Field Summary
Fields Modifier and Type Field Description static int
SIZE
-
Constructor Summary
Constructors Constructor Description DateAndTime()
DateAndTime(byte[] buf, int offset)
DateAndTime(DateAndTime other)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DateAndTime
copy()
boolean
equals(java.lang.Object o)
java.util.Calendar
getDate()
int
hashCode()
boolean
isEmpty()
void
serialize(byte[] buf, int offset)
java.lang.String
toString()
-
-
-
Field Detail
-
SIZE
public static final int SIZE
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
DateAndTime
public DateAndTime()
-
DateAndTime
public DateAndTime(DateAndTime other)
-
DateAndTime
public DateAndTime(byte[] buf, int offset)
-
-
Method Detail
-
getDate
public java.util.Calendar getDate()
-
serialize
public void serialize(byte[] buf, int offset)
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
copy
public DateAndTime copy()
- Specified by:
copy
in interfaceorg.apache.poi.common.Duplicatable
-
isEmpty
public boolean isEmpty()
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-