Package uk.ac.starlink.ttools.plot2
Interface PrefixTicker.Rule
-
- All Superinterfaces:
BasicTicker.Rule
- Enclosing class:
- PrefixTicker
public static interface PrefixTicker.Rule extends BasicTicker.Rule
Defines a specific rule for generating tick marks with prefixes. It just extends BasicTicker.Rule with a method for generating the prefix. The inheritedBasicTicker.Rule.indexToLabel(long)
method should provide the suffix part.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Caption
indexToPrefix(long index)
Returns the prefix part only for labelling the major tick identified by a given index.Caption
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 Detail
-
indexToPrefix
Caption indexToPrefix(long index)
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
Caption indexToSuffix(long index)
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
-
-