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.
  • Enum Constant Details

    • ELEMENT_PER_GEOMETRY

      public static final TLcdVPFModelDecoder.ModelElementMode ELEMENT_PER_GEOMETRY
      In ELEMENT_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

      public static final TLcdVPFModelDecoder.ModelElementMode ELEMENT_PER_FEATURE
      In ELEMENT_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, an ILcdShapeList which contains all geometries of the feature.
  • Method Details

    • values

      public static TLcdVPFModelDecoder.ModelElementMode[] 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

      public static TLcdVPFModelDecoder.ModelElementMode valueOf(String name)
      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 name
      NullPointerException - if the argument is null