Uses of Class
org.faceless.graph.formatter.Formatter
-
Packages that use Formatter Package Description org.faceless.graph Contains the basic classes for creating a Graph.org.faceless.graph.formatter Contains classes for formatting entries on a graphs' axis. -
-
Uses of Formatter in org.faceless.graph
Fields in org.faceless.graph declared as Formatter Modifier and Type Field Description protected Formatter
AxesGraph. xformatter
Which formatter to use for the X, Y or Z axis.protected Formatter
AxesGraph. yformatter
Which formatter to use for the X, Y or Z axis.protected Formatter
AxesGraph. zformatter
Which formatter to use for the X, Y or Z axis.Methods in org.faceless.graph with parameters of type Formatter Modifier and Type Method Description void
AxesGraph. optionXFormatter(Formatter val)
Which {link org.faceless.graph.formatter.Formatter} to use to format the values on the X axis.void
AxesGraph. optionYFormatter(Formatter val)
Which {link org.faceless.graph.formatter.Formatter} to use to format the values on the Y axis.void
AxesGraph. optionZFormatter(Formatter val)
Which {link org.faceless.graph.formatter.Formatter} to use to format the values on the Z axis. -
Uses of Formatter in org.faceless.graph.formatter
Subclasses of Formatter in org.faceless.graph.formatter Modifier and Type Class Description class
CurrencyFormatter
The CurrencyFormatter formats a value according to the currency format of the specified locale.class
DateFormatter
A subclasss ofFormatter
that deals with dates and times.class
DiscreteFormatter
TheDiscreteFormatter
treats it's double argument as an index into a list of String values, and returns the matching String.class
FloatingPointFormatter
The FloatingPointFormatter is the default formatter that is used if any values on the axis contain a decimal point.class
IntegerFormatter
The IntegerFormatter is the default formatter that's used if none of the values on the graph contains any decimal places.class
NullFormatter
The NullFormatter always returns an empty String as it's formatted value, and an emtpy array as it's list of steps.class
PercentageFormatter
A formatter that returns it's input formatted as a percentageclass
SimpleFormatter
Format values using a user definedjava.text.DecimalFormat
-