Enum LasUtils.VALUETYPE
- java.lang.Object
-
- java.lang.Enum<LasUtils.VALUETYPE>
-
- org.hortonmachine.gears.io.las.utils.LasUtils.VALUETYPE
-
- All Implemented Interfaces:
Serializable,Comparable<LasUtils.VALUETYPE>
- Enclosing class:
- LasUtils
public static enum LasUtils.VALUETYPE extends Enum<LasUtils.VALUETYPE>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CLASSIFICATIONELEVATIONGROUNDELEVATIONIMPULSEINTENSITYNUM_OF_IMPULSESXY
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static LasUtils.VALUETYPEvalueOf(String name)Returns the enum constant of this type with the specified name.static LasUtils.VALUETYPE[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ELEVATION
public static final LasUtils.VALUETYPE ELEVATION
-
GROUNDELEVATION
public static final LasUtils.VALUETYPE GROUNDELEVATION
-
CLASSIFICATION
public static final LasUtils.VALUETYPE CLASSIFICATION
-
INTENSITY
public static final LasUtils.VALUETYPE INTENSITY
-
IMPULSE
public static final LasUtils.VALUETYPE IMPULSE
-
NUM_OF_IMPULSES
public static final LasUtils.VALUETYPE NUM_OF_IMPULSES
-
X
public static final LasUtils.VALUETYPE X
-
Y
public static final LasUtils.VALUETYPE Y
-
-
Method Detail
-
values
public static LasUtils.VALUETYPE[] 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 (LasUtils.VALUETYPE c : LasUtils.VALUETYPE.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static LasUtils.VALUETYPE 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
-
-