Uses of Class
org.jboss.logging.processor.util.Comparison
Packages that use Comparison
-
Uses of Comparison in org.jboss.logging.processor.util
Subclasses of Comparison in org.jboss.logging.processor.utilFields in org.jboss.logging.processor.util declared as ComparisonModifier and TypeFieldDescriptionprivate static final Comparison
Comparison.ALLOW_NULL_INSTANCE
private static final Comparison
Comparison.GREATER_COMPARISON
private static final Comparison
Comparison.INSTANCE
private static final Comparison
Comparison.LESS_COMPARISON
Methods in org.jboss.logging.processor.util that return ComparisonModifier and TypeMethodDescriptionstatic Comparison
Comparison.begin()
Begins a new comparison.static Comparison
Comparison.beginAllowNull()
Begins a new comparison, but allows fornull
values to be passed.private Comparison
Comparison.checkResult
(int result) Checks to see which comparison to return.Comparison.compare
(boolean left, boolean right) Compares the left boolean to the double boolean.Comparison.compare
(double left, double right) Compares the left double to the double integer.Comparison.compare
(float left, float right) Compares the left float to the float integer.Comparison.compare
(int left, int right) Compares the left integer to the right integer.Comparison.compare
(long left, long right) Compares the left long to the right long.abstract Comparison
Comparison.compare
(Comparable<?> left, Comparable<?> right) Compares the left comparable to the right as specified by theComparable.compareTo(Object)
interface.abstract <T> Comparison
Comparison.compare
(T left, T right, Comparator<T> comparator) Compares the left object to the right object as specified by theComparator.compare(Object, Object)
interface.Comparison.DeadComparison.compare
(boolean left, boolean right) Comparison.DeadComparison.compare
(double left, double right) Comparison.DeadComparison.compare
(float left, float right) Comparison.DeadComparison.compare
(int left, int right) Comparison.DeadComparison.compare
(long left, long right) Comparison.DeadComparison.compare
(Comparable<?> left, Comparable<?> right) <T> Comparison
Comparison.DeadComparison.compare
(T left, T right, Comparator<T> comparator) Comparison.DeadComparison.getInstance()
protected abstract Comparison
Comparison.getInstance()
Returns the comparison instance being used.