Examples of InclusiveRangePredicate


Examples of org.aavso.tools.vstar.data.validation.InclusiveRangePredicate

   *            A SQL result set that is the source of observations.
   */
  public AAVSODatabaseObservationReader(ResultSet source) {
    super();
    this.source = source;
    this.uncertaintyRangePredicate = new InclusiveRangePredicate(0, 1);
  }
View Full Code Here

Examples of org.aavso.tools.vstar.data.validation.InclusiveRangePredicate

      julianDayValidator = new JulianDayValidator();

      magnitudeFieldValidator = new MagnitudeFieldValidator();

      uncertaintyValueValidator = new UncertaintyValueValidator(
          new InclusiveRangePredicate(0, 1));

      transformedValidator = new TransformedValidator();

      // What should the range be for CCD/PEP, Visual/PTG?
      magnitudeValueValidator = new MagnitudeValueValidator(
          new InclusiveRangePredicate(-10, 25));

      this.commentCodeValidator = new CommentCodeValidator(CommentType
          .getRegex());
    }
View Full Code Here

Examples of org.aavso.tools.vstar.data.validation.InclusiveRangePredicate

    public CatalinaSkySurveyFileReader() {
      julianDayValidator = new JulianDayValidator();
      magnitudeFieldValidator = new MagnitudeFieldValidator();
      uncertaintyValueValidator = new UncertaintyValueValidator(
          new InclusiveRangePredicate(0, 1));
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.