Package uk.ac.starlink.ttools.plot2
Interface PrefixTicker.Rule
- All Superinterfaces:
BasicTicker.Rule
- Enclosing class:
- PrefixTicker
Defines a specific rule for generating tick marks with prefixes.
It just extends BasicTicker.Rule with a method for generating the
prefix. The inherited
BasicTicker.Rule.indexToLabel(long)
method should provide
the suffix part.-
Method Summary
Modifier and TypeMethodDescriptionindexToPrefix
(long index) Returns the prefix part only for labelling the major tick identified by a given index.indexToSuffix
(long index) Returns the suffix part only for labelling the major tick identified by a given index.Methods inherited from interface uk.ac.starlink.ttools.plot2.BasicTicker.Rule
floorIndex, getMinors, indexToLabel, indexToValue
-
Method Details
-
indexToPrefix
Returns the prefix part only for labelling the major tick identified by a given index.- Parameters:
index
- major tick index- Returns:
- prefix part of label
-
indexToSuffix
Returns the suffix part only for labelling the major tick identified by a given index.- Parameters:
index
- major tick index- Returns:
- suffix part of label
-