Package eu.stratosphere.api.java.typeutils.runtime

Examples of eu.stratosphere.api.java.typeutils.runtime.WritableComparator


  @SuppressWarnings({ "rawtypes", "unchecked" })
  @Override
  public TypeComparator<T> createComparator(boolean sortOrderAscending) {
    if(Comparable.class.isAssignableFrom(typeClass)) {
      return new WritableComparator(sortOrderAscending, typeClass);
    }
    else {
      throw new UnsupportedOperationException("Cannot create Comparator for "+typeClass.getCanonicalName()+". " +
                          "Class does not implement Comparable interface.");
    }
View Full Code Here

TOP

Related Classes of eu.stratosphere.api.java.typeutils.runtime.WritableComparator

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.