Package org.aavso.tools.vstar.data

Examples of org.aavso.tools.vstar.data.ValidationType


   * Good, Y = Deleted (filtered out via SQL). Our query converts any
   * occurrence of 'T' to 'D'. Currently we convert everything to Good (V,G),
   * Discrepant (D), or Prevalidated (Z) below.
   */
  private ValidationType getNextValidationType() throws SQLException {
    ValidationType type;

    String valflag = getNextPossiblyNullString("valflag");

    if ("Z".equals(valflag)) {
      type = ValidationType.PREVALIDATION;
View Full Code Here

TOP

Related Classes of org.aavso.tools.vstar.data.ValidationType

Copyright © 2018 www.massapicom. 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.