public enum LengthUnit extends java.lang.Enum<LengthUnit> implements PhysicalUnit
Modifier and Type | Method and Description |
---|---|
double |
factor() |
static Quantity<LengthUnit> |
fromStringInPt(java.lang.String value) |
static Quantity<LengthUnit> |
pixelsInPt(double value) |
static void |
setScalingFactor(double newFactor) |
static LengthUnit |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LengthUnit[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
name
public static final LengthUnit px
public static final LengthUnit in
public static final LengthUnit mm
public static final LengthUnit cm
public static final LengthUnit pt
public static LengthUnit[] values()
for (LengthUnit c : LengthUnit.values()) System.out.println(c);
public static LengthUnit valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic double factor()
factor
in interface PhysicalUnit
public static Quantity<LengthUnit> pixelsInPt(double value)
public static Quantity<LengthUnit> fromStringInPt(java.lang.String value)
public static void setScalingFactor(double newFactor)