Class SimpleUnitFormat

java.lang.Object
tech.units.indriya.format.AbstractUnitFormat
tech.units.indriya.format.SimpleUnitFormat
All Implemented Interfaces:
javax.measure.format.UnitFormat
Direct Known Subclasses:
SimpleUnitFormat.DefaultFormat

public abstract class SimpleUnitFormat extends AbstractUnitFormat

This class implements the UnitFormat interface for formatting and parsing units.

For all SI units, the 20 SI prefixes used to form decimal multiples and sub-multiples of SI units are recognized. Units are directly recognized. For example:
AbstractUnit.parse("m°C").equals(MetricPrefix.MILLI(Units.CELSIUS)) AbstractUnit.parse("kW").equals(MetricPrefix.KILO(Units.WATT)) AbstractUnit.parse("ft").equals(Units.METRE.multiply(0.3048))

Since:
1.0
Version:
1.5, April 15, 2019
  • Field Details

    • SI_UNITS

      private static final javax.measure.Unit<?>[] SI_UNITS
    • PREFIXES

      private static final Prefix[] PREFIXES
    • PREFIX_SYMBOLS

      private static final String[] PREFIX_SYMBOLS
    • PREFIX_CONVERTERS

      private static final javax.measure.UnitConverter[] PREFIX_CONVERTERS
    • DEFAULT

      private static final SimpleUnitFormat.DefaultFormat DEFAULT
      Holds the standard unit format.
    • ASCII

      private static final SimpleUnitFormat.ASCIIFormat ASCII
      Holds the ASCIIFormat unit format.
    • SYMBOL_TO_UNIT

      private static final Map<String,javax.measure.Unit<?>> SYMBOL_TO_UNIT
      Holds the unique symbols collection (base units or alternate units).
    • MU

      private static final String MU
      See Also:
  • Constructor Details

    • SimpleUnitFormat

      protected SimpleUnitFormat()
      Base constructor.
  • Method Details

    • getInstance

      public static SimpleUnitFormat getInstance()
      Returns the unit format for the default locale (format used by AbstractUnit.parse(CharSequence) and Unit.toString()).
      Returns:
      the default unit format (locale sensitive).
    • getInstance

      public static SimpleUnitFormat getInstance(SimpleUnitFormat.Flavor flavor)
      Returns the SimpleUnitFormat in the desired SimpleUnitFormat.Flavor
      Returns:
      the instance for the given SimpleUnitFormat.Flavor.
    • format

      public abstract Appendable format(javax.measure.Unit<?> unit, Appendable appendable) throws IOException
      Formats the specified unit.
      Specified by:
      format in interface javax.measure.format.UnitFormat
      Specified by:
      format in class AbstractUnitFormat
      Parameters:
      unit - the unit to format.
      appendable - the appendable destination.
      Returns:
      The appendable destination passed in as appendable, with formatted text appended.
      Throws:
      IOException - if an error occurs.
    • parseProductUnit

      public abstract javax.measure.Unit<? extends javax.measure.Quantity> parseProductUnit(CharSequence csq, ParsePosition pos) throws javax.measure.format.ParserException
      Parses a sequence of character to produce a unit or a rational product of unit.
      Parameters:
      csq - the CharSequence to parse.
      pos - an object holding the parsing index and error position.
      Returns:
      an Unit parsed from the character sequence.
      Throws:
      IllegalArgumentException - if the character sequence contains an illegal syntax.
      javax.measure.format.ParserException
    • parseSingleUnit

      public abstract javax.measure.Unit<? extends javax.measure.Quantity> parseSingleUnit(CharSequence csq, ParsePosition pos) throws javax.measure.format.ParserException
      Parses a sequence of character to produce a single unit.
      Parameters:
      csq - the CharSequence to parse.
      pos - an object holding the parsing index and error position.
      Returns:
      an Unit parsed from the character sequence.
      Throws:
      IllegalArgumentException - if the character sequence does not contain a valid unit identifier.
      javax.measure.format.ParserException
    • label

      public abstract void label(javax.measure.Unit<?> unit, String label)
      Attaches a system-wide label to the specified unit. For example: SimpleUnitFormat.getInstance().label(DAY.multiply(365), "year"); SimpleUnitFormat.getInstance().label(METER.multiply(0.3048), "ft"); If the specified label is already associated to an unit the previous association is discarded or ignored.
      Specified by:
      label in interface javax.measure.format.UnitFormat
      Overrides:
      label in class AbstractUnitFormat
      Parameters:
      unit - the unit being labeled.
      label - the new label for this unit.
      Throws:
      IllegalArgumentException - if the label is not a isValidIdentifier(String) valid identifier.
    • alias

      public abstract void alias(javax.measure.Unit<?> unit, String alias)
      Attaches a system-wide alias to this unit. Multiple aliases may be attached to the same unit. Aliases are used during parsing to recognize different variants of the same unit. For example: SimpleUnitFormat.getInstance().alias(METER.multiply(0.3048), "foot"); SimpleUnitFormat.getInstance().alias(METER.multiply(0.3048), "feet"); SimpleUnitFormat.getInstance().alias(METER, "meter"); SimpleUnitFormat.getInstance().alias(METER, "metre"); If the specified label is already associated to an unit the previous association is discarded or ignored.
      Parameters:
      unit - the unit being aliased.
      alias - the alias attached to this unit.
      Throws:
      IllegalArgumentException - if the label is not a isValidIdentifier(String) valid identifier.
    • isValidIdentifier

      public abstract boolean isValidIdentifier(String name)
      Indicates if the specified name can be used as unit identifier.
      Parameters:
      name - the identifier to be tested.
      Returns:
      true if the name specified can be used as label or alias for this format;false otherwise.
    • format

      public final StringBuffer format(Object unit, StringBuffer toAppendTo, FieldPosition pos)
      Formats an unit and appends the resulting text to a given string buffer (implements java.text.Format).
      Parameters:
      unit - the unit to format.
      toAppendTo - where the text is to be appended
      pos - the field position (not used).
      Returns:
      toAppendTo
    • parseObject

      public final javax.measure.Unit<?> parseObject(String source, ParsePosition pos) throws javax.measure.format.ParserException
      Parses the text from a string to produce an object (implements java.text.Format).
      Parameters:
      source - the string source, part of which should be parsed.
      pos - the cursor position.
      Returns:
      the corresponding unit or null if the string cannot be parsed.
      Throws:
      javax.measure.format.ParserException
    • asciiPrefix

      private static String asciiPrefix(String prefix)
    • asciiSymbol

      private static String asciiSymbol(String s)
    • isAllASCII

      protected static boolean isAllASCII(String input)
      to check if a string only contains US-ASCII characters