Interface ILcdGML3Measure

All Known Subinterfaces:
ILcdGML3Angle, ILcdGML3Length

public interface ILcdGML3Measure
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:MeasureType type.

A MeasureType is an amount encoded as a double, together with a units of measure indicated by a uom attribute. The value of uom (Units Of Measure) attribute is a reference to a reference system for the amount, often a ratio or interval scale.

(GML Specification, v3.1.0, paragraph 7.3.3.3)

  • Method Summary

    Modifier and Type
    Method
    Description
    double
    Deprecated.
    Returns the amount of this measure.
    Deprecated.
    Returns the unit of measure of this measure.
    void
    setMeasure(double aMeasure)
    Deprecated.
    Sets the amount of this measure.
    void
    setUom(String aUom)
    Deprecated.
    Sets the unit of measure of this measure.
  • Method Details

    • getMeasure

      double getMeasure()
      Deprecated.
      Returns the amount of this measure.
      Returns:
      the amount of this measure.
    • getUom

      String getUom()
      Deprecated.
      Returns the unit of measure of this measure.
      Returns:
      the unit of measure of this measure.
    • setMeasure

      void setMeasure(double aMeasure)
      Deprecated.
      Sets the amount of this measure.
      Parameters:
      aMeasure - the amount of this measure.
    • setUom

      void setUom(String aUom)
      Deprecated.
      Sets the unit of measure of this measure.
      Parameters:
      aUom - the unit of measure of this measure.