Package org.eclipse.birt.chart.event
Class StructureType
- java.lang.Object
-
- org.eclipse.birt.chart.event.StructureType
-
public class StructureType extends java.lang.Object
This class defines the type for a StructureSource object and provides predefined constants.
-
-
Field Summary
Fields Modifier and Type Field Description static StructureType
AXIS
Indicates an Axis structure type.static StructureType
AXIS_LABEL
Indicates an Axis Label structure type.static StructureType
AXIS_TITLE
Indicates an Axis Title structure type.static StructureType
CHART_BLOCK
Indicates a Chart Block structure type.static StructureType
LEGEND
Indicates a Legend structure type.static StructureType
LEGEND_ENTRY
Indicates a Legend Entry structure type.static StructureType
LEGEND_TITLE
Indicates a Legend Title structure type.static StructureType
MARKER_LINE
Indicates a Marker Line structure type.static StructureType
MARKER_RANGE
Indicates a Marker Range structure type.static StructureType
PLOT
Indicates a Plot structure type.static StructureType
SERIES
Indicates a Series structure type.static StructureType
SERIES_DATA_POINT
Indicates a Series DataPoint structure type.static StructureType
SERIES_ELEMENT
Indicates a Series Element structure type.static StructureType
SERIES_FITTING_CURVE
Indicates a Series Fitting Curve structure type.static StructureType
SERIES_MARKER
Indicates a Series Marker structure type.static StructureType
SERIES_TITLE
Indicates a Series Title structure type.static StructureType
TITLE
Indicates a Title structure type.static StructureType
UNKNOWN
Indicates an Unknown structure type.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getTypeString()
Returns the type string.java.lang.String
toString()
-
-
-
Field Detail
-
UNKNOWN
public static final StructureType UNKNOWN
Indicates an Unknown structure type. The relevant source is an unknownObject
type.
-
CHART_BLOCK
public static final StructureType CHART_BLOCK
Indicates a Chart Block structure type. The relevant source is aBlock
type.
-
PLOT
public static final StructureType PLOT
Indicates a Plot structure type. The relevant source is aPlot
type.
-
TITLE
public static final StructureType TITLE
Indicates a Title structure type. The relevant source is aTitleBlock
type.
-
LEGEND
public static final StructureType LEGEND
Indicates a Legend structure type. The relevant source is aLegend
type.
-
LEGEND_TITLE
public static final StructureType LEGEND_TITLE
Indicates a Legend Title structure type. The relevant source is aLabel
type.
-
LEGEND_ENTRY
public static final StructureType LEGEND_ENTRY
Indicates a Legend Entry structure type. The relevant source is aLegendEntryRenderingHints
type.
-
AXIS
public static final StructureType AXIS
Indicates an Axis structure type. The relevant source is aAxis
type.
-
AXIS_TITLE
public static final StructureType AXIS_TITLE
Indicates an Axis Title structure type. The relevant source is aLabel
type.
-
AXIS_LABEL
public static final StructureType AXIS_LABEL
Indicates an Axis Label structure type. The relevant source is aLabel
type.
-
SERIES
public static final StructureType SERIES
Indicates a Series structure type. The relevant source is aSeries
type.
-
SERIES_TITLE
public static final StructureType SERIES_TITLE
Indicates a Series Title structure type. The relevant source is aLabel
type.
-
SERIES_ELEMENT
public static final StructureType SERIES_ELEMENT
Indicates a Series Element structure type. The relevant source is aDataPointHints
type.
-
SERIES_MARKER
public static final StructureType SERIES_MARKER
Indicates a Series Marker structure type. The relevant source is aMarker
type.
-
SERIES_DATA_POINT
public static final StructureType SERIES_DATA_POINT
Indicates a Series DataPoint structure type. The relevant source is aDataPointHints
type.
-
SERIES_FITTING_CURVE
public static final StructureType SERIES_FITTING_CURVE
Indicates a Series Fitting Curve structure type. The relevant source is aCurveFitting
type.
-
MARKER_LINE
public static final StructureType MARKER_LINE
Indicates a Marker Line structure type. The relevant source is aMarkerLine
type.
-
MARKER_RANGE
public static final StructureType MARKER_RANGE
Indicates a Marker Range structure type. The relevant source is aMarkerRange
type.
-
-