Pressure
public
final
class
Pressure
extends Object
implements
Comparable<Pressure>
java.lang.Object | |
↳ | android.health.connect.datatypes.units.Pressure |
Represents a unit of pressure. Supported units: millimeters of Mercury (mmHg)
Summary
Public methods | |
---|---|
int
|
compareTo(Pressure other)
Compares this object with the specified object for order. |
boolean
|
equals(Object object)
Indicates whether some other object is "equal to" this one. |
static
Pressure
|
fromMillimetersOfMercury(double value)
Creates a Pressure object with the specified value in millimeters of Mercury (mmHg). |
double
|
getInMillimetersOfMercury()
Returns pressure in millimeters of mercury |
int
|
hashCode()
Returns a hash code value for the object. |
String
|
toString()
Returns a string representation of the object. |
Inherited methods | |
---|---|
Public methods
compareTo
public int compareTo (Pressure other)
Compares this object with the specified object for order. Returns a negative integer, zero, or a positive integer as this object is less than, equal to, or greater than the specified object.
Parameters | |
---|---|
other |
Pressure : the object to be compared.
This value cannot be null . |
Returns | |
---|---|
int |
a negative integer, zero, or a positive integer as this object is less than, equal to, or greater than the specified object. |
Throws | |
---|---|
NullPointerException |
if the specified object is null |
ClassCastException |
if the specified object's type prevents it from being compared to this object. |
equals
public boolean equals (Object object)
Indicates whether some other object is "equal to" this one.
Parameters | |
---|---|
object |
Object : the reference object with which to compare. |
Returns | |
---|---|
boolean |
true if this object is the same as the object argument; false
otherwise. |
fromMillimetersOfMercury
public static Pressure fromMillimetersOfMercury (double value)
Creates a Pressure object with the specified value in millimeters of Mercury (mmHg).
Parameters | |
---|---|
value |
double : value to be set as millimeters of Mercury. |
Returns | |
---|---|
Pressure |
This value cannot be null . |
getInMillimetersOfMercury
public double getInMillimetersOfMercury ()
Returns pressure in millimeters of mercury
Returns | |
---|---|
double |
hashCode
public int hashCode ()
Returns a hash code value for the object.
Returns | |
---|---|
int |
a hash code value for this object. |
toString
public String toString ()
Returns a string representation of the object.
Returns | |
---|---|
String |
a string representation of the object. |