Package org.apache.poi.hssf.record
Class PageBreakRecord.Break
- java.lang.Object
-
- org.apache.poi.hssf.record.PageBreakRecord.Break
-
- All Implemented Interfaces:
GenericRecord
- Enclosing class:
- PageBreakRecord
public static final class PageBreakRecord.Break extends Object implements GenericRecord
Since both records store 2byte integers (short), no point in differentiating it in the records.The subs (rows or columns, don't seem to be able to set but excel sets them automatically)
-
-
Field Summary
Fields Modifier and Type Field Description static int
ENCODED_SIZE
-
Constructor Summary
Constructors Constructor Description Break(int main, int subFrom, int subTo)
Break(PageBreakRecord.Break other)
Break(RecordInputStream in)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Map<String,Supplier<?>>
getGenericProperties()
int
getMain()
int
getSubFrom()
int
getSubTo()
void
serialize(LittleEndianOutput out)
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.apache.poi.common.usermodel.GenericRecord
getGenericChildren, getGenericRecordType
-
-
-
-
Field Detail
-
ENCODED_SIZE
public static final int ENCODED_SIZE
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
Break
public Break(PageBreakRecord.Break other)
-
Break
public Break(int main, int subFrom, int subTo)
-
Break
public Break(RecordInputStream in)
-
-
Method Detail
-
getMain
public int getMain()
-
getSubFrom
public int getSubFrom()
-
getSubTo
public int getSubTo()
-
serialize
public void serialize(LittleEndianOutput out)
-
getGenericProperties
public Map<String,Supplier<?>> getGenericProperties()
- Specified by:
getGenericProperties
in interfaceGenericRecord
-
-