This interface represents the measurable, countable, or comparable
property or aspect of a thing.
Implementing instances are typically the result of a measurement:[code]
Measurable weight = Measure.valueOf(180.0, POUND);
[/code]
They can also be created from custom classes:[code]
class Delay implements Measurable {
private long nanoSeconds; // Implicit internal unit.
public double doubleValue(Unit unit) { ... |