Package jcascalog.op

Examples of jcascalog.op.LT


    Api.execute(new StdoutTap(), new Subquery("?person").predicate(Playground.AGE, "?person", 25));
  }

  public static void lessThanThirtyYearsOld() {
    Api.execute(new StdoutTap(), new Subquery("?person")
        .predicate(Playground.AGE, "?person", "?age").predicate(new LT(), "?age", 30));
  }
View Full Code Here


        .predicate(Playground.AGE, "?person", "?age").predicate(new LT(), "?age", 30));
  }

  public static void lessThanThirtyYearsOldWithAge() {
    Api.execute(new StdoutTap(), new Subquery("?person", "?age")
        .predicate(Playground.AGE, "?person", "?age").predicate(new LT(), "?age", 30));
  }
View Full Code Here

TOP

Related Classes of jcascalog.op.LT

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.