Enum ELasPointType
- java.lang.Object
-
- java.lang.Enum<ELasPointType>
-
- org.hortonmachine.gears.io.las.utils.ELasPointType
-
- All Implemented Interfaces:
Serializable,Comparable<ELasPointType>
public enum ELasPointType extends Enum<ELasPointType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BUILDINGGROUNDLOW_POINTMASS_POINTOVERLAPRAILROAD_SURFACEUNASSIGNEDUNCLASSIFIEDVEGETATION_MAXVEGETATION_MEDVEGETATION_MINWATERWIRE_GUARD
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetLabel()intgetValue()static ELasPointTypevalueOf(String name)Returns the enum constant of this type with the specified name.static ELasPointType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNCLASSIFIED
public static final ELasPointType UNCLASSIFIED
-
UNASSIGNED
public static final ELasPointType UNASSIGNED
-
GROUND
public static final ELasPointType GROUND
-
VEGETATION_MIN
public static final ELasPointType VEGETATION_MIN
-
VEGETATION_MED
public static final ELasPointType VEGETATION_MED
-
VEGETATION_MAX
public static final ELasPointType VEGETATION_MAX
-
BUILDING
public static final ELasPointType BUILDING
-
LOW_POINT
public static final ELasPointType LOW_POINT
-
MASS_POINT
public static final ELasPointType MASS_POINT
-
WATER
public static final ELasPointType WATER
-
RAIL
public static final ELasPointType RAIL
-
ROAD_SURFACE
public static final ELasPointType ROAD_SURFACE
-
OVERLAP
public static final ELasPointType OVERLAP
-
WIRE_GUARD
public static final ELasPointType WIRE_GUARD
-
-
Method Detail
-
values
public static ELasPointType[] 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 (ELasPointType c : ELasPointType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ELasPointType 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
-
getLabel
public String getLabel()
-
getValue
public int getValue()
-
-