Package org.apache.ctakes.ytex.kernel

Examples of org.apache.ctakes.ytex.kernel.OrderedPair


public class SymmetricPairCacheKeyGenerator implements CacheKeyGenerator {

  @SuppressWarnings({ "unchecked", "rawtypes" })
  @Override
  public Object getCacheKey(Method method, Object[] args) {
    return new OrderedPair((Comparable) args[0], (Comparable) args[1]);
  }
View Full Code Here


    return new OrderedPair((Comparable) args[0], (Comparable) args[1]);
  }

  @SuppressWarnings({ "rawtypes", "unchecked" })
  public Object getCacheKey(Object o1, Object o2) {
    return new OrderedPair((Comparable) o1, (Comparable) o2);
  }
View Full Code Here

TOP

Related Classes of org.apache.ctakes.ytex.kernel.OrderedPair

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.