public enum LidarPointSelection extends Enum<LidarPointSelection>
| Enum Constant and Description |
|---|
AllPoints
Model should load all points
|
FirstReturn
Model should load first-return points only
|
GroundPoints
Model should load ground-point data only
|
LastReturn
Model should load last-return points only
|
| Modifier and Type | Method and Description |
|---|---|
static LidarPointSelection |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LidarPointSelection[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LidarPointSelection GroundPoints
public static final LidarPointSelection FirstReturn
public static final LidarPointSelection LastReturn
public static final LidarPointSelection AllPoints
public static LidarPointSelection[] values()
for (LidarPointSelection c : LidarPointSelection.values()) System.out.println(c);
public static LidarPointSelection valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2019. All rights reserved.