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 Link icon

    • TLcdWCSValueRange Link icon

      public TLcdWCSValueRange()
  • Method Details Link icon

    • getAtomic Link icon

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

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

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

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

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

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

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

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

      public TLcdWCSTypedLiteral getMin()
      Gets the min.

      Minimum value of this numeric parameter.

      Returns:
      the min.
    • setMin Link icon

      public void setMin(TLcdWCSTypedLiteral aMin)
      Sets the min.

      Minimum value of this numeric parameter.

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

      public TLcdWCSTypedLiteral getMax()
      Gets the max.

      Maximum value of this numeric parameter.

      Returns:
      the max.
    • setMax Link icon

      public void setMax(TLcdWCSTypedLiteral aMax)
      Sets the max.

      Maximum value of this numeric parameter.

      Parameters:
      aMax - the max to be set.