com.landawn.abacus.util.Chain Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of abacus-android-se-jdk7 Show documentation
Show all versions of abacus-android-se-jdk7 Show documentation
A general programming library in Java
/*
* Copyright (c) 2017, Haiyang Li.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.landawn.abacus.util;
import java.util.Comparator;
/**
*
* @author HaiYang Li
*
*/
public final class Chain {
private Chain() {
// singleton
}
/**
* Compares two comparable objects as specified by {@link
* Comparable#compareTo}, if the result of this comparison chain
* has not already been determined.
*
* @param left
* @param right
* @return {@code ComparisonChain}
*/
public static > ComparisonChain compare(T left, T right) {
return new ComparisonChain().compare(left, right);
}
/**
* Compares two objects using a comparator, if the result of this
* comparison chain has not already been determined.
*
* @param left
* @param right
* @return {@code ComparisonChain}
*/
public static ComparisonChain compare(T left, T right, Comparator comparator) {
return new ComparisonChain().compare(left, right, comparator);
}
/**
* Compares two {@code int} values as specified by {@link N#compare},
* if the result of this comparison chain has not already been
* determined.
*
* @param left
* @param right
* @return {@code ComparisonChain}
*/
public static ComparisonChain compare(int left, int right) {
return new ComparisonChain().compare(left, right);
}
/**
* Compares two {@code long} values as specified by {@link N#compare},
* if the result of this comparison chain has not already been
* determined.
*
* @param left
* @param right
* @return {@code ComparisonChain}
*/
public static ComparisonChain compare(long left, long right) {
return new ComparisonChain().compare(left, right);
}
/**
* Compares two {@code float} values as specified by {@link
* Float#compare}, if the result of this comparison chain has not
* already been determined.
*
* @param left
* @param right
* @return {@code ComparisonChain}
*/
public static ComparisonChain compare(float left, float right) {
return new ComparisonChain().compare(left, right);
}
/**
* Compares two {@code double} values as specified by {@link
* Double#compare}, if the result of this comparison chain has not
* already been determined.
*
* @param left
* @param right
* @return {@code ComparisonChain}
*/
public static ComparisonChain compare(double left, double right) {
return new ComparisonChain().compare(left, right);
}
/**
* Compares two {@code boolean} values, considering {@code false} to be less
* than {@code true}, if the result of this comparison chain has not
* already been determined.
*
* @param left
* @param right
* @return {@code ComparisonChain}
*
*/
public static ComparisonChain compareFalseLess(boolean left, boolean right) {
return new ComparisonChain().compareFalseLess(left, right);
}
/**
* Compares two {@code boolean} values, considering {@code true} to be less
* than {@code false}, if the result of this comparison chain has not
* already been determined.
*
* @param left
* @param right
* @return {@code ComparisonChain}
*/
public static ComparisonChain compareTrueLess(boolean left, boolean right) {
return new ComparisonChain().compareTrueLess(left, right);
}
/**
* Compares two comparable objects as specified by {@link
* N#equals(Object, Object)}, if the result of this equivalence chain
* has not already been determined.
*
* @param left
* @param right
* @return {@code EquivalenceChain}
*/
public static EquivalenceChain equals(Object left, Object right) {
return new EquivalenceChain().equals(left, right);
}
/**
* Compares two {@code int} values as specified by {@code left == right},
* if the result of this equivalence chain has not already been
* determined.
*
* @param left
* @param right
* @return {@code EquivalenceChain}
*/
public static EquivalenceChain equals(int left, int right) {
return new EquivalenceChain().equals(left, right);
}
/**
* Compares two {@code long} values as specified by {@code left == right},
* if the result of this equivalence chain has not already been
* determined.
*
* @param left
* @param right
* @return {@code EquivalenceChain}
*/
public static EquivalenceChain equals(long left, long right) {
return new EquivalenceChain().equals(left, right);
}
/**
* Compares two {@code float} values as specified by {@link
* Float#compare}, if the result of this equivalence chain has not
* already been determined.
*
* @param left
* @param right
* @return {@code EquivalenceChain}
*/
public static EquivalenceChain equals(float left, float right) {
return new EquivalenceChain().equals(left, right);
}
/**
* Compares two {@code double} values as specified by {@link
* Double#compare}, if the result of this equivalence chain has not
* already been determined.
*
* @param left
* @param right
* @return {@code EquivalenceChain}
*/
public static EquivalenceChain equals(double left, double right) {
return new EquivalenceChain().equals(left, right);
}
/**
* Compares two {@code boolean} values as specified by {@code left == right},
* if the result of this equivalence chain has not already been
* determined.
*
* @param left
* @param right
* @return {@code EquivalenceChain}
*/
public static EquivalenceChain equals(boolean left, boolean right) {
return new EquivalenceChain().equals(left, right);
}
/**
* Add the hash code of the specified {@code value} to result.
*
* @param value
* @return this
*/
public static HashCodeChain hash(Object value) {
return new HashCodeChain().hash(value);
}
/**
* Add the hash code of the specified {@code value} to result.
*
* @param value
* @return this
*/
public static HashCodeChain hash(int value) {
return new HashCodeChain().hash(value);
}
/**
* Add the hash code of the specified {@code value} to result.
*
* @param value
* @return this
*/
public static HashCodeChain hash(long value) {
return new HashCodeChain().hash(value);
}
/**
* Add the hash code of the specified {@code value} to result.
*
* @param value
* @return this
*/
public static HashCodeChain hash(float value) {
return new HashCodeChain().hash(value);
}
/**
* Add the hash code of the specified {@code value} to result.
*
* @param value
* @return this
*/
public static HashCodeChain hash(double value) {
return new HashCodeChain().hash(value);
}
/**
* Add the hash code of the specified {@code value} to result.
*
* @param value
* @return this
*/
public static HashCodeChain hash(boolean value) {
return new HashCodeChain().hash(value);
}
public static class ComparisonChain {
private int result = 0;
private ComparisonChain() {
// singleton.
}
/**
* Compares two comparable objects as specified by {@link
* Comparable#compareTo}, if the result of this comparison chain
* has not already been determined.
*
* @param left
* @param right
* @return this
*/
public > ComparisonChain compare(T left, T right) {
if (result == 0) {
result = N.compare(left, right);
}
return this;
}
/**
* Compares two objects using a comparator, if the result of this
* comparison chain has not already been determined.
*
* @param left
* @param right
* @return this
*/
public ComparisonChain compare(T left, T right, Comparator comparator) {
if (result == 0) {
result = N.compare(left, right, comparator);
}
return this;
}
/**
* Compares two {@code int} values as specified by {@link N#compare},
* if the result of this comparison chain has not already been
* determined.
*
* @param left
* @param right
* @return this
*/
public ComparisonChain compare(int left, int right) {
if (result == 0) {
result = N.compare(left, right);
}
return this;
}
/**
* Compares two {@code long} values as specified by {@link N#compare},
* if the result of this comparison chain has not already been
* determined.
*
* @param left
* @param right
* @return this
*/
public ComparisonChain compare(long left, long right) {
if (result == 0) {
result = N.compare(left, right);
}
return this;
}
/**
* Compares two {@code float} values as specified by {@link
* Float#compare}, if the result of this comparison chain has not
* already been determined.
*
* @param left
* @param right
* @return this
*/
public ComparisonChain compare(float left, float right) {
if (result == 0) {
result = N.compare(left, right);
}
return this;
}
/**
* Compares two {@code double} values as specified by {@link
* Double#compare}, if the result of this comparison chain has not
* already been determined.
*
* @param left
* @param right
* @return this
*/
public ComparisonChain compare(double left, double right) {
if (result == 0) {
result = N.compare(left, right);
}
return this;
}
/**
* Compares two {@code boolean} values, considering {@code false} to be less
* than {@code true}, if the result of this comparison chain has not
* already been determined.
*
* @param left
* @param right
* @return this
*/
public ComparisonChain compareFalseLess(boolean left, boolean right) {
if (result == 0) {
result = left == right ? 0 : (left ? -1 : 1);
}
return this;
}
/**
* Compares two {@code boolean} values, considering {@code true} to be less
* than {@code false}, if the result of this comparison chain has not
* already been determined.
*
* @param left
* @param right
* @return this
*/
public ComparisonChain compareTrueLess(boolean left, boolean right) {
if (result == 0) {
result = left == right ? 0 : (left ? 1 : -1);
}
return this;
}
public int result() {
return result;
}
}
public static class EquivalenceChain {
private boolean result = true;
private EquivalenceChain() {
// singleton.
}
/**
* Compares two comparable objects as specified by {@link
* N#equals(Object, Object)}, if the result of this equivalence chain
* has not already been determined.
*
* @param left
* @param right
* @return this
*/
public EquivalenceChain equals(Object left, Object right) {
if (result) {
result = N.equals(left, right);
}
return this;
}
/**
* Compares two {@code int} values as specified by {@code left == right},
* if the result of this equivalence chain has not already been
* determined.
*
* @param left
* @param right
* @return this
*/
public EquivalenceChain equals(int left, int right) {
if (result) {
result = left == right;
}
return this;
}
/**
* Compares two {@code long} values as specified by {@code left == right},
* if the result of this equivalence chain has not already been
* determined.
*
* @param left
* @param right
* @return this
*/
public EquivalenceChain equals(long left, long right) {
if (result) {
result = left == right;
}
return this;
}
/**
* Compares two {@code float} values as specified by {@link
* Float#compare}, if the result of this equivalence chain has not
* already been determined.
*
* @param left
* @param right
* @return this
*/
public EquivalenceChain equals(float left, float right) {
if (result) {
result = Float.compare(left, right) == 0;
}
return this;
}
/**
* Compares two {@code double} values as specified by {@link
* Double#compare}, if the result of this equivalence chain has not
* already been determined.
*
* @param left
* @param right
* @return this
*/
public EquivalenceChain equals(double left, double right) {
if (result) {
result = Double.compare(left, right) == 0;
}
return this;
}
/**
* Compares two {@code boolean} values as specified by {@code left == right},
* if the result of this equivalence chain has not already been
* determined.
*
* @param left
* @param right
* @return this
*/
public EquivalenceChain equals(boolean left, boolean right) {
if (result) {
result = left == right;
}
return this;
}
public boolean result() {
return result;
}
}
public static class HashCodeChain {
private int result = 0;
private HashCodeChain() {
// singleton.
}
/**
* Add the hash code of the specified {@code value} to result.
*
* @param value
* @return this
*/
public HashCodeChain hash(Object value) {
result = result * 31 + N.hashCode(value);
return this;
}
/**
* Add the hash code of the specified {@code value} to result.
*
* @param value
* @return this
*/
public HashCodeChain hash(int value) {
result = result * 31 + N.hashCode(value);
return this;
}
/**
* Add the hash code of the specified {@code value} to result.
*
* @param value
* @return this
*/
public HashCodeChain hash(long value) {
result = result * 31 + N.hashCode(value);
return this;
}
/**
* Add the hash code of the specified {@code value} to result.
*
* @param value
* @return this
*/
public HashCodeChain hash(float value) {
result = result * 31 + N.hashCode(value);
return this;
}
/**
* Add the hash code of the specified {@code value} to result.
*
* @param value
* @return this
*/
public HashCodeChain hash(double value) {
result = result * 31 + N.hashCode(value);
return this;
}
/**
* Add the hash code of the specified {@code value} to result.
*
* @param value
* @return this
*/
public HashCodeChain hash(boolean value) {
result = result * 31 + (value ? 1231 : 1237);
return this;
}
public int result() {
return result;
}
}
}