Package com.franz.agbase

Examples of com.franz.agbase.LiteralNode


  public static String printValueObject(ValueObject o) {
    String result;
    if (o == null) {
      result = "Null";
    } else if (o instanceof LiteralNode) {
      LiteralNode l = (LiteralNode)o;
      result = l.getLabel();
    } else if (o instanceof BlankNode) {
      BlankNode b = (BlankNode)o;
      result = b.getID();
    } else if (o instanceof ValueNode) {
      ValueNode n = (ValueNode)o;
View Full Code Here

TOP

Related Classes of com.franz.agbase.LiteralNode

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.