Uses of Class
edu.cs.ai.kreator.misc.util.Pair

Packages that use Pair
edu.cs.ai.kreator.control.config   
edu.cs.ai.kreator.logic   
edu.cs.ai.kreator.misc.util   
 

Uses of Pair in edu.cs.ai.kreator.control.config
 

Methods in edu.cs.ai.kreator.control.config that return Pair
static Pair<java.lang.Double,java.lang.Boolean> ConfigurationFacility.getProperty(DoubleBoolConfigOption option)
          Fetches the value for the given option from the config.
static Pair<java.lang.Integer,java.lang.Boolean> ConfigurationFacility.getProperty(IntBoolConfigOption option)
          Fetches the value for the given option from the config.
static Pair<java.lang.String,java.lang.Boolean> ConfigurationFacility.getProperty(StringBooleanConfigurationOption option)
          Fetches the value for the given option from the config.
 

Uses of Pair in edu.cs.ai.kreator.logic
 

Methods in edu.cs.ai.kreator.logic that return Pair
 Pair<ClauseNetworkNode,ClauseNetworkNode> ClauseNetwork.getCombinableClauses()
          Checks whether there are at least two nodes in this network which's clauses share the same head and returns this pair if existing.
 

Uses of Pair in edu.cs.ai.kreator.misc.util
 

Methods in edu.cs.ai.kreator.misc.util that return types with arguments of type Pair
static
<A,B> java.util.List<Pair<A,B>>
Pair.makePairs(java.util.Collection<A> first, java.util.Collection<B> second)
          This method combines the two given collections into one collection by making a pair of the collection's elements (as they are given by the collections iterator).