Package org.apache.poi.hssf.record
Class DVALRecord
- 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.DVALRecord
-
- All Implemented Interfaces:
Duplicatable
,GenericRecord
public final class DVALRecord extends StandardRecord
This record is the list header of all data validation records (0x01BE) in the current sheet.
-
-
Field Summary
Fields Modifier and Type Field Description static short
sid
-
Constructor Summary
Constructors Constructor Description DVALRecord()
DVALRecord(DVALRecord other)
DVALRecord(RecordInputStream in)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DVALRecord
copy()
protected int
getDataSize()
int
getDVRecNo()
Map<String,Supplier<?>>
getGenericProperties()
HSSFRecordTypes
getGenericRecordType()
int
getHorizontalPos()
int
getObjectID()
short
getOptions()
short
getSid()
return the non static version of the id for this record.int
getVerticalPos()
void
serialize(LittleEndianOutput out)
Write the data content of this BIFF record.void
setDVRecNo(int dvNo)
Set the number of following DV recordsvoid
setHorizontalPos(int horiz_pos)
void
setObjectID(int cboID)
set the object ID of the drop down arrow object for list boxesvoid
setOptions(short options)
void
setVerticalPos(int vert_pos)
-
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
clone, equals, finalize, 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
-
DVALRecord
public DVALRecord()
-
DVALRecord
public DVALRecord(DVALRecord other)
-
DVALRecord
public DVALRecord(RecordInputStream in)
-
-
Method Detail
-
setOptions
public void setOptions(short options)
- Parameters:
options
- the options of the dialog
-
setHorizontalPos
public void setHorizontalPos(int horiz_pos)
- Parameters:
horiz_pos
- the Horizontal position of the dialog
-
setVerticalPos
public void setVerticalPos(int vert_pos)
- Parameters:
vert_pos
- the Vertical position of the dialog
-
setObjectID
public void setObjectID(int cboID)
set the object ID of the drop down arrow object for list boxes- Parameters:
cboID
- - Object ID
-
setDVRecNo
public void setDVRecNo(int dvNo)
Set the number of following DV records- Parameters:
dvNo
- - the DV records number
-
getOptions
public short getOptions()
- Returns:
- the field_1_options
-
getHorizontalPos
public int getHorizontalPos()
- Returns:
- the Horizontal position of the dialog
-
getVerticalPos
public int getVerticalPos()
- Returns:
- the Vertical position of the dialog
-
getObjectID
public int getObjectID()
- Returns:
- the Object ID of the drop down arrow object for list boxes
-
getDVRecNo
public int getDVRecNo()
- Returns:
- the number of following DV records
-
serialize
public void serialize(LittleEndianOutput out)
Description copied from class:StandardRecord
Write the data content of this BIFF record. The 'ushort sid' and 'ushort size' header fields have already been written by the superclass.The number of bytes written must equal the record size reported by
RecordBase.getRecordSize()
} minus four ( record header consisting of a 'ushort sid' and 'ushort reclength' has already been written by their superclass).- Specified by:
serialize
in classStandardRecord
- Parameters:
out
- the output object
-
getDataSize
protected int getDataSize()
- Specified by:
getDataSize
in classStandardRecord
-
getSid
public short getSid()
Description copied from class:Record
return the non static version of the id for this record.
-
copy
public DVALRecord copy()
- Specified by:
copy
in interfaceDuplicatable
- Specified by:
copy
in classStandardRecord
- Returns:
- a deep copy of the implementing class / instance
-
getGenericRecordType
public HSSFRecordTypes getGenericRecordType()
- Specified by:
getGenericRecordType
in interfaceGenericRecord
- Specified by:
getGenericRecordType
in classRecord
-
-