Class TLcdWCSValueRange

java.lang.Object
com.luciad.ogc.wcs.common.model.TLcdWCSValueRange
Direct Known Subclasses:
TLcdWCSInterval

public class TLcdWCSValueRange extends Object
The range of an interval. If the "min" or "max" element is not included, there is no value limit in that direction. Inclusion of the specified minimum and maximum values in the range shall be defined by the "closure". (The interval can be bounded or semi-bounded with different closures.) The data type and the semantic of the values are inherited by children and may be superceded by them. This range may be qualitative, i.e., nominal (age range) or qualitative (percentage) meaning that a value between min/max can be queried.
  • Constructor Details

    • TLcdWCSValueRange

      public TLcdWCSValueRange()
  • Method Details

    • getAtomic

      public Boolean getAtomic()
      Gets the atomic.
      Returns:
      the atomic.
    • setAtomic

      public void setAtomic(Boolean aAtomic)
      Sets the atomic.
      Parameters:
      aAtomic - the atomic to be set.
    • getClosure

      public TLcdWCSClosure getClosure()
      Gets the closure.
      Returns:
      the closure.
    • setClosure

      public void setClosure(TLcdWCSClosure aClosure)
      Sets the closure.
      Parameters:
      aClosure - the closure to be set.
    • getSemantic

      public String getSemantic()
      Gets the semantic.
      Returns:
      the semantic.
    • setSemantic

      public void setSemantic(String aSemantic)
      Sets the semantic.
      Parameters:
      aSemantic - the semantic to be set.
    • getType

      public String getType()
      Gets the type.
      Returns:
      the type.
    • setType

      public void setType(String aType)
      Sets the type.
      Parameters:
      aType - the type to be set.
    • getMin

      public TLcdWCSTypedLiteral getMin()
      Gets the min.

      Minimum value of this numeric parameter.

      Returns:
      the min.
    • setMin

      public void setMin(TLcdWCSTypedLiteral aMin)
      Sets the min.

      Minimum value of this numeric parameter.

      Parameters:
      aMin - the min to be set.
    • getMax

      public TLcdWCSTypedLiteral getMax()
      Gets the max.

      Maximum value of this numeric parameter.

      Returns:
      the max.
    • setMax

      public void setMax(TLcdWCSTypedLiteral aMax)
      Sets the max.

      Maximum value of this numeric parameter.

      Parameters:
      aMax - the max to be set.