Interface ILcdGML3MultiPoint

All Superinterfaces:
ILcdGML3AbstractGeometricAggregate, ILcdGML3AbstractGeometry, ILcdGML3AbstractGML, ILcdGML3SrsInformationGroup, ILcdGML3SrsReferenceGroup, ILcdGML3StandardObjectProperties

public interface ILcdGML3MultiPoint extends ILcdGML3AbstractGeometricAggregate
Deprecated.
This class has been deprecated. The GML decoders and encoders in the com.luciad.format.gml3.* packages are replaced by new decoders and encoders in the packages com.luciad.format.gml2.xml, com.luciad.format.gml31.xml and com.luciad.format.gml32.xml.
Interface for the gml:MultiPointType type.

A MultiPoint is defined by one or more Points, referenced through pointMember elements.

(GML Specification, v3.1.0, paragraph 11.3.2.1)

  • Method Details

    • getPointMember

      ILcdGML3PointProperty getPointMember(int aIndex)
      Deprecated.
      Returns the point property at the given index.
      Parameters:
      aIndex - the index of the point property to be returned.
      Returns:
      the point property at the given index.
      Throws:
      IndexOutOfBoundsException - if aIndex < 0 || aIndex >= getPointMemberCount()
    • getPointMemberCount

      int getPointMemberCount()
      Deprecated.
      Returns the number of point properties contained in this multi point.
      Returns:
      the number of point properties contained in this multi point.
    • getPointMembers

      ILcdGML3PointArrayProperty getPointMembers()
      Deprecated.
      Returns the point array property contained in this multi point.
      Returns:
      the point array property contained in this multi point.
    • setPointMembers

      void setPointMembers(ILcdGML3PointProperty[] aPointProperties)
      Deprecated.
      Sets the point properties to be contained in this multi point.
      Parameters:
      aPointProperties - the point properties to be contained in this multi point.
    • setPointMembersArray

      void setPointMembersArray(ILcdGML3PointArrayProperty aPointArrayProperty)
      Deprecated.
      Sets the point array property to be contained in this multi point.
      Parameters:
      aPointArrayProperty - the point array property to be contained in this multi point.