Package org.tinfour.common
Enum VertexMergerGroup.ResolutionRule
- java.lang.Object
-
- java.lang.Enum<VertexMergerGroup.ResolutionRule>
-
- org.tinfour.common.VertexMergerGroup.ResolutionRule
-
- All Implemented Interfaces:
Serializable,Comparable<VertexMergerGroup.ResolutionRule>
- Enclosing class:
- VertexMergerGroup
public static enum VertexMergerGroup.ResolutionRule extends Enum<VertexMergerGroup.ResolutionRule>
Specifies a rule for determining a z value based on the collection of coincident vertices. The selection of rules may be made to reflect lidar return type (i.e. MaxValue for first-return processing), or classification (min or average value used for ground-classified vertices).
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static VertexMergerGroup.ResolutionRulevalueOf(String name)Returns the enum constant of this type with the specified name.static VertexMergerGroup.ResolutionRule[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MinValue
public static final VertexMergerGroup.ResolutionRule MinValue
use the minimum z value
-
MeanValue
public static final VertexMergerGroup.ResolutionRule MeanValue
use the mean z value
-
MaxValue
public static final VertexMergerGroup.ResolutionRule MaxValue
use the maximum z value
-
-
Method Detail
-
values
public static VertexMergerGroup.ResolutionRule[] 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 (VertexMergerGroup.ResolutionRule c : VertexMergerGroup.ResolutionRule.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static VertexMergerGroup.ResolutionRule 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
-
-