Package org.apache.poi.hssf.record
Class FtCblsSubRecord
- java.lang.Object
-
- org.apache.poi.hssf.record.SubRecord
-
- org.apache.poi.hssf.record.FtCblsSubRecord
-
- All Implemented Interfaces:
Duplicatable
,GenericRecord
public final class FtCblsSubRecord extends SubRecord
This structure appears as part of an Obj record that represents a checkbox or radio button.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.apache.poi.hssf.record.SubRecord
SubRecord.SubRecordTypes
-
-
Field Summary
Fields Modifier and Type Field Description static short
sid
-
Constructor Summary
Constructors Constructor Description FtCblsSubRecord()
Construct a newFtCblsSubRecord
and fill its data with the default valuesFtCblsSubRecord(FtCblsSubRecord other)
FtCblsSubRecord(LittleEndianInput in, int size)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description FtCblsSubRecord
copy()
protected int
getDataSize()
Map<String,Supplier<?>>
getGenericProperties()
SubRecord.SubRecordTypes
getGenericRecordType()
short
getSid()
void
serialize(LittleEndianOutput out)
Serialize the record data into the supplied array of bytes-
Methods inherited from class org.apache.poi.hssf.record.SubRecord
createSubRecord, getMaxRecordLength, isTerminating, serialize, setMaxRecordLength, 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
-
FtCblsSubRecord
public FtCblsSubRecord()
Construct a newFtCblsSubRecord
and fill its data with the default values
-
FtCblsSubRecord
public FtCblsSubRecord(FtCblsSubRecord other)
-
FtCblsSubRecord
public FtCblsSubRecord(LittleEndianInput in, int size)
-
-
Method Detail
-
serialize
public void serialize(LittleEndianOutput out)
Serialize the record data into the supplied array of bytes
-
getDataSize
protected int getDataSize()
- Specified by:
getDataSize
in classSubRecord
- Returns:
- the size of the data for this record (which is always 4 bytes less than the total record size). Note however, that ushort encoded after the record sid is usually but not always the data size.
-
getSid
public short getSid()
- Returns:
- id of this record.
-
copy
public FtCblsSubRecord copy()
- Specified by:
copy
in interfaceDuplicatable
- Specified by:
copy
in classSubRecord
- Returns:
- a deep copy of the implementing class / instance
-
getGenericRecordType
public SubRecord.SubRecordTypes getGenericRecordType()
- Specified by:
getGenericRecordType
in interfaceGenericRecord
- Specified by:
getGenericRecordType
in classSubRecord
-
-