Package org.apache.poi.hssf.record
Class DateWindow1904Record
- java.lang.Object
-
- org.apache.poi.hssf.record.RecordBase
-
- org.apache.poi.hssf.record.Record
-
- org.apache.poi.hssf.record.StandardRecord
-
- org.apache.poi.hssf.record.DateWindow1904Record
-
- All Implemented Interfaces:
org.apache.poi.common.Duplicatable,GenericRecord
public final class DateWindow1904Record extends StandardRecord
Flag specifying whether 1904 date windowing is used.
-
-
Field Summary
Fields Modifier and Type Field Description static shortsid
-
Constructor Summary
Constructors Constructor Description DateWindow1904Record()DateWindow1904Record(DateWindow1904Record other)DateWindow1904Record(RecordInputStream in)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DateWindow1904Recordcopy()java.util.Map<java.lang.String,java.util.function.Supplier<?>>getGenericProperties()HSSFRecordTypesgetGenericRecordType()shortgetSid()return the non static version of the id for this record.shortgetWindowing()gets whether or not to use 1904 date windowing (which means you'll be screwed in 2004)voidserialize(LittleEndianOutput out)voidsetWindowing(short window)sets whether or not to use 1904 date windowing (which means you'll be screwed in 2004)-
Methods inherited from class org.apache.poi.hssf.record.StandardRecord
getRecordSize, serialize
-
Methods inherited from class org.apache.poi.hssf.record.Record
cloneViaReserialise, serialize, toString
-
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.apache.poi.common.usermodel.GenericRecord
getGenericChildren
-
-
-
-
Field Detail
-
sid
public static final short sid
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
DateWindow1904Record
public DateWindow1904Record()
-
DateWindow1904Record
public DateWindow1904Record(DateWindow1904Record other)
-
DateWindow1904Record
public DateWindow1904Record(RecordInputStream in)
-
-
Method Detail
-
setWindowing
public void setWindowing(short window)
sets whether or not to use 1904 date windowing (which means you'll be screwed in 2004)- Parameters:
window- flag - 0/1 (false,true)
-
getWindowing
public short getWindowing()
gets whether or not to use 1904 date windowing (which means you'll be screwed in 2004)- Returns:
- window flag - 0/1 (false,true)
-
serialize
public void serialize(LittleEndianOutput out)
-
getSid
public short getSid()
Description copied from class:Recordreturn the non static version of the id for this record.
-
copy
public DateWindow1904Record copy()
- Specified by:
copyin interfaceorg.apache.poi.common.Duplicatable- Specified by:
copyin classStandardRecord
-
getGenericRecordType
public HSSFRecordTypes getGenericRecordType()
- Specified by:
getGenericRecordTypein interfaceGenericRecord- Specified by:
getGenericRecordTypein classRecord
-
getGenericProperties
public java.util.Map<java.lang.String,java.util.function.Supplier<?>> getGenericProperties()
-
-