Enum GeoprocessingLinearUnit.Unit
- java.lang.Object
-
- java.lang.Enum<GeoprocessingLinearUnit.Unit>
-
- com.esri.arcgisruntime.tasks.geoprocessing.GeoprocessingLinearUnit.Unit
-
- All Implemented Interfaces:
Serializable
,Comparable<GeoprocessingLinearUnit.Unit>
- Enclosing class:
- GeoprocessingLinearUnit
public static enum GeoprocessingLinearUnit.Unit extends Enum<GeoprocessingLinearUnit.Unit>
The list of geoprocessing linear unit types. This defines the subset of linear units supported byGeoprocessingLinearUnit
.- Since:
- 100.0.0
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CENTIMETER
Centimeter.DECIMETER
Decimeter.KILOMETER
Kilometer.METER
Meter.MILLIMETER
Millimeter.POINT
Typographical point (1/72").US_NAUTICAL_MILE
US nautical mile (pre-1954).US_SURVEY_FOOT
US survey foot.US_SURVEY_INCH
US survey inch.US_SURVEY_MILE
US survey mile.US_SURVEY_YARD
US survey yard.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static GeoprocessingLinearUnit.Unit
valueOf(String name)
Returns the enum constant of this type with the specified name.static GeoprocessingLinearUnit.Unit[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CENTIMETER
public static final GeoprocessingLinearUnit.Unit CENTIMETER
Centimeter.- Since:
- 100.0.0
-
DECIMETER
public static final GeoprocessingLinearUnit.Unit DECIMETER
Decimeter.- Since:
- 100.0.0
-
KILOMETER
public static final GeoprocessingLinearUnit.Unit KILOMETER
Kilometer.- Since:
- 100.0.0
-
METER
public static final GeoprocessingLinearUnit.Unit METER
Meter.- Since:
- 100.0.0
-
MILLIMETER
public static final GeoprocessingLinearUnit.Unit MILLIMETER
Millimeter.- Since:
- 100.0.0
-
POINT
public static final GeoprocessingLinearUnit.Unit POINT
Typographical point (1/72").- Since:
- 100.0.0
-
US_NAUTICAL_MILE
public static final GeoprocessingLinearUnit.Unit US_NAUTICAL_MILE
US nautical mile (pre-1954).- Since:
- 100.0.0
-
US_SURVEY_FOOT
public static final GeoprocessingLinearUnit.Unit US_SURVEY_FOOT
US survey foot.- Since:
- 100.0.0
-
US_SURVEY_INCH
public static final GeoprocessingLinearUnit.Unit US_SURVEY_INCH
US survey inch.- Since:
- 100.0.0
-
US_SURVEY_MILE
public static final GeoprocessingLinearUnit.Unit US_SURVEY_MILE
US survey mile.- Since:
- 100.0.0
-
US_SURVEY_YARD
public static final GeoprocessingLinearUnit.Unit US_SURVEY_YARD
US survey yard.- Since:
- 100.0.0
-
-
Method Detail
-
values
public static GeoprocessingLinearUnit.Unit[] 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 (GeoprocessingLinearUnit.Unit c : GeoprocessingLinearUnit.Unit.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static GeoprocessingLinearUnit.Unit valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-