Package com.luciad.format.vpf
Enum Class TLcdVPFModelDecoder.ModelElementMode
java.lang.Object
java.lang.Enum<TLcdVPFModelDecoder.ModelElementMode>
com.luciad.format.vpf.TLcdVPFModelDecoder.ModelElementMode
- All Implemented Interfaces:
Serializable
,Comparable<TLcdVPFModelDecoder.ModelElementMode>
,Constable
- Enclosing class:
TLcdVPFModelDecoder
public static enum TLcdVPFModelDecoder.ModelElementMode
extends Enum<TLcdVPFModelDecoder.ModelElementMode>
Enumeration defining the available model element modes for VPF.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionInELEMENT_PER_FEATURE
mode, each feature in the data will be decoded to a model element.InELEMENT_PER_GEOMETRY
mode, each geometry in the data will be decoded to its own model element. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static TLcdVPFModelDecoder.ModelElementMode[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
ELEMENT_PER_GEOMETRY
InELEMENT_PER_GEOMETRY
mode, each geometry in the data will be decoded to its own model element. When a feature consists of multiple geometries, there will be as many elements in the model as the number of geometries it has, all with the same feature id but a different geometry. -
ELEMENT_PER_FEATURE
InELEMENT_PER_FEATURE
mode, each feature in the data will be decoded to a model element. When a feature consists of multiple geometries, there will be only one element in the model, anILcdShapeList
which contains all geometries of the feature.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-