Enum LinearUnit
- java.lang.Object
- 
- java.lang.Enum<LinearUnit>
- 
- de.hendrikjanssen.geotifftools.metadata.geokeys.values.LinearUnit
 
 
- 
- All Implemented Interfaces:
- java.io.Serializable,- java.lang.Comparable<LinearUnit>
 
 public enum LinearUnit extends java.lang.Enum<LinearUnit> 
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description ChainBenoitChainSearsFathomFootFootClarkeFootIndianFootModified_AmericanFootUS_SurveyLinkLinkBenoitLinkSearsMeterMileInternationalNauticalYardIndianYardSears
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description intcode()static LinearUnitvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static LinearUnit[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
Meterpublic static final LinearUnit Meter 
 - 
Footpublic static final LinearUnit Foot 
 - 
FootUS_Surveypublic static final LinearUnit FootUS_Survey 
 - 
FootModified_Americanpublic static final LinearUnit FootModified_American 
 - 
FootClarkepublic static final LinearUnit FootClarke 
 - 
FootIndianpublic static final LinearUnit FootIndian 
 - 
Linkpublic static final LinearUnit Link 
 - 
LinkBenoitpublic static final LinearUnit LinkBenoit 
 - 
LinkSearspublic static final LinearUnit LinkSears 
 - 
ChainBenoitpublic static final LinearUnit ChainBenoit 
 - 
ChainSearspublic static final LinearUnit ChainSears 
 - 
YardSearspublic static final LinearUnit YardSears 
 - 
YardIndianpublic static final LinearUnit YardIndian 
 - 
Fathompublic static final LinearUnit Fathom 
 - 
MileInternationalNauticalpublic static final LinearUnit MileInternationalNautical 
 
- 
 - 
Method Detail- 
valuespublic static LinearUnit[] 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 (LinearUnit c : LinearUnit.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static LinearUnit 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 name
- java.lang.NullPointerException- if the argument is null
 
 - 
codepublic int code() 
 
- 
 
-