com.landawn.abacus.util.ShortTriple Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of abacus-android Show documentation
Show all versions of abacus-android Show documentation
A general and simple library for Android
/*
* Copyright (C) 2018 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 com.landawn.abacus.util.u.Optional;
import com.landawn.abacus.util.stream.ShortStream;
/**
*
* @since 1.2
*
* @author Haiyang Li
*/
public class ShortTriple {
public final short _1;
public final short _2;
public final short _3;
ShortTriple() {
this((short) 0, (short) 0, (short) 0);
}
ShortTriple(short _1, short _2, short _3) {
this._1 = _1;
this._2 = _2;
this._3 = _3;
}
public static ShortTriple of(short _1, short _2, short _3) {
return new ShortTriple(_1, _2, _3);
}
public short min() {
return N.min(_1, _2, _3);
}
public short max() {
return N.max(_1, _2, _3);
}
public short median() {
return N.median(_1, _2, _3);
}
public int sum() {
return _1 + _2 + _3;
}
public double average() {
return (0d + _1 + _2 + _3) / 3;
}
public ShortTriple reversed() {
return new ShortTriple(_3, _2, _1);
}
public short[] toArray() {
return new short[] { _1, _2, _3 };
}
public ShortList toList() {
return ShortList.of(_1, _2, _3);
}
public void forEach(Try.ShortConsumer comsumer) throws E {
comsumer.accept(this._1);
comsumer.accept(this._2);
comsumer.accept(this._3);
}
public void accept(Try.Consumer action) throws E {
action.accept(this);
}
public U map(Try.Function mapper) throws E {
return mapper.apply(this);
}
public Optional filter(final Try.Predicate predicate) throws E {
return predicate.test(this) ? Optional.of(this) : Optional. empty();
}
public ShortStream stream() {
return ShortStream.of(_1, _2, _3);
}
@Override
public int hashCode() {
return (31 * (31 * _1 + this._2)) + _3;
}
@Override
public boolean equals(Object obj) {
if (this == obj) {
return true;
} else if (!(obj instanceof ShortTriple)) {
return false;
} else {
ShortTriple other = (ShortTriple) obj;
return this._1 == other._1 && this._2 == other._2 && this._3 == other._3;
}
}
@Override
public String toString() {
return "[" + this._1 + ", " + this._2 + ", " + this._3 + "]";
}
}