Enum StatuteLengthUnits
- java.lang.Object
-
- java.lang.Enum<StatuteLengthUnits>
-
- org.linuxforhealth.fhir.search.location.uom.standard.StatuteLengthUnits
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<StatuteLengthUnits>
public enum StatuteLengthUnits extends java.lang.Enum<StatuteLengthUnits>
U.S. “survey” lengths (also called "statute" lengths) Units
The factors are in FT.
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Double
factor()
static StatuteLengthUnits
fromValue(java.lang.String value)
java.lang.String
value()
static StatuteLengthUnits
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static StatuteLengthUnits[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FOOT
public static final StatuteLengthUnits FOOT
-
FOOT_CI
public static final StatuteLengthUnits FOOT_CI
-
FOOT_VARIANT_FT
public static final StatuteLengthUnits FOOT_VARIANT_FT
-
FOOT_VARIANT_FTS
public static final StatuteLengthUnits FOOT_VARIANT_FTS
-
FOOT_VARIANT_FOOT
public static final StatuteLengthUnits FOOT_VARIANT_FOOT
-
FOOT_VARIANT_FEET
public static final StatuteLengthUnits FOOT_VARIANT_FEET
-
FOOT_VARIANT_FT_CI
public static final StatuteLengthUnits FOOT_VARIANT_FT_CI
-
FOOT_VARIANT_FTS_CI
public static final StatuteLengthUnits FOOT_VARIANT_FTS_CI
-
FOOT_VARIANT_FOOT_CI
public static final StatuteLengthUnits FOOT_VARIANT_FOOT_CI
-
FOOT_VARIANT_FEET_CI
public static final StatuteLengthUnits FOOT_VARIANT_FEET_CI
-
YARD
public static final StatuteLengthUnits YARD
-
YARD_CI
public static final StatuteLengthUnits YARD_CI
-
INCH
public static final StatuteLengthUnits INCH
-
INCH_CI
public static final StatuteLengthUnits INCH_CI
-
ROD
public static final StatuteLengthUnits ROD
-
ROD_CI
public static final StatuteLengthUnits ROD_CI
-
SURVEYORS_CHAIN
public static final StatuteLengthUnits SURVEYORS_CHAIN
-
SURVEYORS_CHAIN_CI
public static final StatuteLengthUnits SURVEYORS_CHAIN_CI
-
SURVEYORS_LINK
public static final StatuteLengthUnits SURVEYORS_LINK
-
SURVEYORS_LINK_CI
public static final StatuteLengthUnits SURVEYORS_LINK_CI
-
ENGINEERS_CHAIN
public static final StatuteLengthUnits ENGINEERS_CHAIN
-
ENGINEERS_CHAIN_CI
public static final StatuteLengthUnits ENGINEERS_CHAIN_CI
-
ENGINEERS_LINK
public static final StatuteLengthUnits ENGINEERS_LINK
-
ENGINEERS_LINK_CI
public static final StatuteLengthUnits ENGINEERS_LINK_CI
-
FATHOM
public static final StatuteLengthUnits FATHOM
-
FATHOM_CI
public static final StatuteLengthUnits FATHOM_CI
-
FURLONG
public static final StatuteLengthUnits FURLONG
-
FURLONG_CI
public static final StatuteLengthUnits FURLONG_CI
-
MILE
public static final StatuteLengthUnits MILE
-
MILE_CI
public static final StatuteLengthUnits MILE_CI
-
MILE_VARIANT_MI
public static final StatuteLengthUnits MILE_VARIANT_MI
-
MILE_VARIANT_MIS
public static final StatuteLengthUnits MILE_VARIANT_MIS
-
MILE_VARIANT_MILE
public static final StatuteLengthUnits MILE_VARIANT_MILE
-
MILE_VARIANT_MILES
public static final StatuteLengthUnits MILE_VARIANT_MILES
-
MILE_VARIANT_MI_CI
public static final StatuteLengthUnits MILE_VARIANT_MI_CI
-
MILE_VARIANT_MIS_CI
public static final StatuteLengthUnits MILE_VARIANT_MIS_CI
-
MILE_VARIANT_MILE_CI
public static final StatuteLengthUnits MILE_VARIANT_MILE_CI
-
MILE_VARIANT_MILES_CI
public static final StatuteLengthUnits MILE_VARIANT_MILES_CI
-
MIL
public static final StatuteLengthUnits MIL
-
MIL_CI
public static final StatuteLengthUnits MIL_CI
-
-
Method Detail
-
values
public static StatuteLengthUnits[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (StatuteLengthUnits c : StatuteLengthUnits.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static StatuteLengthUnits valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
value
public java.lang.String value()
-
factor
public java.lang.Double factor()
-
fromValue
public static StatuteLengthUnits fromValue(java.lang.String value)
-
-