Package edu.stanford.nlp.time.SUTime

Examples of edu.stanford.nlp.time.SUTime.Temporal


  }

  public static void main(String[] args) throws SUTimeParsingError {
    for (String s : new String[] {"1972", "1972-07-05", "0712", "1972-04"}) {
      System.out.println("String: " + s);
      Temporal timeExpression = parse(s);
      System.out.println("Parsed: " + timeExpression);
      System.out.println();
    }
  }
View Full Code Here

TOP

Related Classes of edu.stanford.nlp.time.SUTime.Temporal

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.