- All Implemented Interfaces:
Serializable
,Comparable<UnitFormat.Style>
,Constable
- Enclosing class:
UnitFormat
Identify whether unit formatting uses ASCII symbols, Unicode symbols or full localized names.
For example, the
Units.CUBIC_METRE
units can be formatted in the following ways:
- As a symbol using Unicode characters: m³
- As a symbol restricted to the ASCII characters set: m3
- As a long name:
- in English: cubic metre
- in French: mètre cube
- Since:
- 0.8
-
Nested Class Summary
Nested classes/interfaces inherited from class Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic UnitFormat.Style
Returns the enum constant of this class with the specified name.static UnitFormat.Style[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.Methods inherited from class Enum
clone, compareTo, describeConstable, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
SYMBOL
Format unit symbols using Unicode characters. Units formatted in this style use superscript digits for exponents (as in “m³”), the dot operator (“⋅”) for multiplications, specialized characters when they exist (e.g. U+212A “K” for Kelvin sign), etc.This is the default style of
UnitFormat
.- See Also:
-
UCUM
Format unit symbols using a syntax close to the Unified Code for Units of Measure (UCUM) one. The character set is restricted to ASCII. The multiplication operator is the period (“.”).Modification to UCUM syntax rules
UCUM does not allow floating point numbers in unit terms, so the use of period as an operator should not be ambiguous. However, Apache SIS relaxes this restriction in order to support the scale factors commonly found in angular units (e.g. π/180). The meaning of a period in a string is resolved with two SIS-specific rules:- Unit symbols shall not begin or end with a decimal digit or a superscript.
- A period between two decimal digits is interpreted as a decimal separator.
- See Also:
-
NAME
Format unit symbols as localized long names if known, or Unicode symbols otherwise.- See Also:
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-