public class Temperature extends Quantity implements Comparable<Temperature>
Modifier and Type | Field and Description |
---|---|
private int |
hashCodeValue
Cached value for hashCode.
|
private static int |
SEED1
Seed for hashCode.
|
private static int |
SEED2
Seed for hashCode.
|
(package private) Unit<Temperature> |
unit
Unit type of this quantity.
|
(package private) Number |
value
Value of this quantity.
|
Constructor and Description |
---|
Temperature(Number inValue,
Unit<Temperature> inUnit)
Create an Temperature.
|
Modifier and Type | Method and Description |
---|---|
int |
compareTo(Temperature other)
Check quantities for equality.
|
boolean |
equals(Object other)
Check quantities for equality.
|
int |
hashCode() |
String |
toString() |
Unit<Temperature> |
unit()
Get the unit for this quantity.
|
Number |
value()
Get the numerical value of this quantity.
|
Number |
value(Unit<Temperature> inUnit)
Perform a unit conversion.
|
private static final int SEED1
private static final int SEED2
Number value
Unit<Temperature> unit
private int hashCodeValue
public Temperature(Number inValue, Unit<Temperature> inUnit)
inValue
- the value.inUnit
- the unit type.public Number value()
Quantity
public Number value(Unit<Temperature> inUnit)
inUnit
- the unit to convert to.public boolean equals(Object other)
public int compareTo(Temperature other)
compareTo
in interface Comparable<Temperature>
public Unit<Temperature> unit()
Quantity
Copyright © 2016 Open Microscopy Environment