Package com.clarkparsia.pellet.rules

Examples of com.clarkparsia.pellet.rules.VariableBinding.entrySet()


    }

    public Map<AtomVariable, ATermAppl> next() {
      Map<AtomVariable, ATermAppl> result = new HashMap<AtomVariable, ATermAppl>();
      VariableBinding binding = iter.next();
      for (Map.Entry<? extends AtomVariable, ? extends Node> entry : binding.entrySet()) {
        result.put(entry.getKey(), entry.getValue().getTerm());
      }
      return result;
    }
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.