org.eclipse.collections.impl.block.factory.LongPredicates Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eclipse-collections Show documentation
Show all versions of eclipse-collections Show documentation
Builds the commons-text. Requires eclipse-collections-api be built first and be excluded from
any other poms requiring it.
/*
* Copyright (c) 2021 Goldman Sachs.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* and Eclipse Distribution License v. 1.0 which accompany this distribution.
* The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html
* and the Eclipse Distribution License is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*/
package org.eclipse.collections.impl.block.factory;
import org.eclipse.collections.api.block.function.Function;
public final class LongPredicates
{
private static final Predicates IS_ODD = new LongIsOdd();
private static final Predicates IS_EVEN = new LongIsEven();
private static final Predicates IS_POSITIVE = new LongIsPositive();
private static final Predicates IS_NEGATIVE = new LongIsNegative();
private static final Predicates IS_ZERO = new LongIsZero();
private LongPredicates()
{
throw new AssertionError("Suppress default constructor for noninstantiability");
}
public static Predicates isOdd()
{
return IS_ODD;
}
public static Predicates isEven()
{
return IS_EVEN;
}
public static Predicates isPositive()
{
return IS_POSITIVE;
}
public static Predicates isNegative()
{
return IS_NEGATIVE;
}
public static Predicates isZero()
{
return IS_ZERO;
}
public static Predicates attributeIsEven(Function super T, Long> function)
{
return Predicates.attributePredicate(function, LongPredicates.isEven());
}
public static Predicates attributeIsOdd(Function super T, Long> function)
{
return Predicates.attributePredicate(function, LongPredicates.isOdd());
}
public static Predicates attributeIsZero(Function super T, Long> function)
{
return Predicates.attributePredicate(function, LongPredicates.isZero());
}
public static Predicates attributeIsPositive(Function super T, Long> function)
{
return Predicates.attributePredicate(function, LongPredicates.isPositive());
}
public static Predicates attributeIsNegative(Function super T, Long> function)
{
return Predicates.attributePredicate(function, LongPredicates.isNegative());
}
private static class LongIsOdd extends Predicates
{
private static final long serialVersionUID = 1L;
@Override
public boolean accept(Long l)
{
return l.longValue() % 2 != 0;
}
}
private static class LongIsEven extends Predicates
{
private static final long serialVersionUID = 1L;
@Override
public boolean accept(Long l)
{
return l.longValue() % 2 == 0;
}
}
private static class LongIsPositive extends Predicates
{
private static final long serialVersionUID = 1L;
@Override
public boolean accept(Long l)
{
return l.longValue() > 0;
}
}
private static class LongIsNegative extends Predicates
{
private static final long serialVersionUID = 1L;
@Override
public boolean accept(Long l)
{
return l.longValue() < 0;
}
}
private static class LongIsZero extends Predicates
{
private static final long serialVersionUID = 1L;
@Override
public boolean accept(Long l)
{
return l.longValue() == 0;
}
}
}