public enum DataSource extends java.lang.Enum<DataSource>
Enum Constant and Description |
---|
BlockModelData |
DepthMapsAndLaserScansData |
DepthMapsData |
ElevationData |
ImagesData |
LaserScansData |
MasksData |
ModelData |
OrthomosaicData |
PointCloudData |
TiePointsData |
TiledModelData |
TrajectoryData |
Modifier and Type | Method and Description |
---|---|
static DataSource |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DataSource[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataSource TiePointsData
public static final DataSource PointCloudData
public static final DataSource ModelData
public static final DataSource TiledModelData
public static final DataSource ElevationData
public static final DataSource OrthomosaicData
public static final DataSource DepthMapsData
public static final DataSource ImagesData
public static final DataSource TrajectoryData
public static final DataSource LaserScansData
public static final DataSource DepthMapsAndLaserScansData
public static final DataSource MasksData
public static final DataSource BlockModelData
public static DataSource[] values()
for (DataSource c : DataSource.values()) System.out.println(c);
public static DataSource valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null