Package org.apache.poi.hssf.record.chart
Class AxisLineFormatRecord
- 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.chart.AxisLineFormatRecord
-
- All Implemented Interfaces:
Cloneable
public final class AxisLineFormatRecord extends StandardRecord implements Cloneable
The axis line format record defines the axis type details.
-
-
Field Summary
Fields Modifier and Type Field Description static shortAXIS_TYPE_AXIS_LINEstatic shortAXIS_TYPE_MAJOR_GRID_LINEstatic shortAXIS_TYPE_MINOR_GRID_LINEstatic shortAXIS_TYPE_WALLS_OR_FLOORstatic shortsid
-
Constructor Summary
Constructors Constructor Description AxisLineFormatRecord()AxisLineFormatRecord(RecordInputStream in)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AxisLineFormatRecordclone()shortgetAxisType()Get the axis type field for the AxisLineFormat record.shortgetSid()return the non static version of the id for this record.voidserialize(LittleEndianOutput out)voidsetAxisType(short field_1_axisType)Set the axis type field for the AxisLineFormat record.StringtoString()get a string representation of the record (for biffview/debugging)-
Methods inherited from class org.apache.poi.hssf.record.StandardRecord
getRecordSize, serialize
-
Methods inherited from class org.apache.poi.hssf.record.Record
cloneViaReserialise, serialize
-
-
-
-
Field Detail
-
sid
public static final short sid
- See Also:
- Constant Field Values
-
AXIS_TYPE_AXIS_LINE
public static final short AXIS_TYPE_AXIS_LINE
- See Also:
- Constant Field Values
-
AXIS_TYPE_MAJOR_GRID_LINE
public static final short AXIS_TYPE_MAJOR_GRID_LINE
- See Also:
- Constant Field Values
-
AXIS_TYPE_MINOR_GRID_LINE
public static final short AXIS_TYPE_MINOR_GRID_LINE
- See Also:
- Constant Field Values
-
AXIS_TYPE_WALLS_OR_FLOOR
public static final short AXIS_TYPE_WALLS_OR_FLOOR
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
AxisLineFormatRecord
public AxisLineFormatRecord()
-
AxisLineFormatRecord
public AxisLineFormatRecord(RecordInputStream in)
-
-
Method Detail
-
toString
public String toString()
Description copied from class:Recordget a string representation of the record (for biffview/debugging)
-
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.
-
clone
public AxisLineFormatRecord clone()
-
getAxisType
public short getAxisType()
Get the axis type field for the AxisLineFormat record.- Returns:
- One of AXIS_TYPE_AXIS_LINE AXIS_TYPE_MAJOR_GRID_LINE AXIS_TYPE_MINOR_GRID_LINE AXIS_TYPE_WALLS_OR_FLOOR
-
setAxisType
public void setAxisType(short field_1_axisType)
Set the axis type field for the AxisLineFormat record.- Parameters:
field_1_axisType- One of AXIS_TYPE_AXIS_LINE AXIS_TYPE_MAJOR_GRID_LINE AXIS_TYPE_MINOR_GRID_LINE AXIS_TYPE_WALLS_OR_FLOOR
-
-