Package org.vast.util

Class Interval

java.lang.Object
org.vast.util.Interval

public class Interval extends Object

Title: Interval

Description: Simple structure for OGC-style interval info.

Since:
Sep 21, 2007
  • Field Details

    • min

      protected double min
    • max

      protected double max
    • resolution

      protected double resolution
  • Constructor Details

    • Interval

      public Interval()
    • Interval

      public Interval(double min, double max)
    • Interval

      public Interval(double min, double max, double res)
  • Method Details

    • getMin

      public double getMin()
    • setMin

      public void setMin(double min)
    • getMax

      public double getMax()
    • setMax

      public void setMax(double max)
    • getResolution

      public double getResolution()
    • setResolution

      public void setResolution(double res)
    • copy

      public Interval copy()