Uses of Class
com.google.common.collect.ComparisonChain

Packages that use ComparisonChain
com.google.common.collect This package contains generic collection interfaces and implementations, and other utilities for working with collections. 
 

Uses of ComparisonChain in com.google.common.collect
 

Methods in com.google.common.collect that return ComparisonChain
abstract  ComparisonChain ComparisonChain.compare(boolean left, boolean right)
          Compares two boolean values as specified by Booleans.compare(boolean, boolean), if the result of this comparison chain has not already been determined.
abstract  ComparisonChain ComparisonChain.compare(Comparable<?> left, Comparable<?> right)
          Compares two comparable objects as specified by Comparable.compareTo(T), if the result of this comparison chain has not already been determined.
abstract  ComparisonChain ComparisonChain.compare(double left, double right)
          Compares two double values as specified by Double.compare(double, double), if the result of this comparison chain has not already been determined.
abstract  ComparisonChain ComparisonChain.compare(float left, float right)
          Compares two float values as specified by Float.compare(float, float), if the result of this comparison chain has not already been determined.
abstract  ComparisonChain ComparisonChain.compare(int left, int right)
          Compares two int values as specified by Ints.compare(int, int), if the result of this comparison chain has not already been determined.
abstract  ComparisonChain ComparisonChain.compare(long left, long right)
          Compares two long values as specified by Longs.compare(long, long), if the result of this comparison chain has not already been determined.
abstract
<T> ComparisonChain
ComparisonChain.compare(T left, T right, Comparator<T> comparator)
          Compares two objects using a comparator, if the result of this comparison chain has not already been determined.
static ComparisonChain ComparisonChain.start()
          Begins a new chained comparison statement.
 



Copyright © 2010-2012. All Rights Reserved.