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

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


  @SuppressWarnings("unchecked")
  @Override
  public TypeComparator<T> createComparator(boolean sortOrderAscending) {
    if (isKeyType()) {
      @SuppressWarnings("rawtypes")
      GenericTypeComparator comparator = new GenericTypeComparator(sortOrderAscending, createSerializer(), this.typeClass);
      return (TypeComparator<T>) comparator;
    }

    throw new UnsupportedOperationException("Types that do not implement java.lang.Comparable cannot be used as keys.");
  }
View Full Code Here

TOP

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

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.