Creates a new collection.
The collection's editor. Provides methods to add, remove and overwrite unit groups.
All groups of the collection arranged in a map.
Returns a convertible having the given value and unit. Alias to Collection.from.
the convertible's value (e.g. 20
)
the convertible's unit (e.g. °F
)
a convertible having the given value and unit
Returns a convertible having the given value and unit. Does exactly the same as Collection.Convertible.
the convertible's value (e.g. 20
)
the convertible's unit (e.g. °F
)
a convertible having the given value and unit
Returns the group having the passed name.
the group's name
the group itself
Returns a string array containing the names of all groups.
a string array containing the names of all groups
Returns whether the passed unit is supported.
the unit
whether the passed unit is supported
Returns a string array containing the short names of all units.
a string array containing the short names of all units
Returns the collection as human-readable string.
the collection as string
Returns the unit object belonging to the given unit.
the unit as string
the unit object belonging to the given unit string
Generated using TypeDoc
Represents a collection of units (see Unit) structured in groups (see Group).
Offers key functionality like converting from one unit to another. Is the center at which all of the library's features are brought together.
The basic structure of any collection is basically following: A collection is the parent of multiple groups. Groups are parents of multiple units.
Example:
Collections are not static. In fact they are very flexible. You can add, overwrite and remove unit groups using the Collection.Editor. Added to that groups are editable in the same way (see Group.Editor), which leads to the fact that groups can be modified in their entirety at runtime.