de.javagl.viewer.Predicates Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of viewer-core Show documentation
Show all versions of viewer-core Show documentation
A Java Swing Panel that allows rotation, translation and zooming
The newest version!
/*
* www.javagl.de - Viewer
*
* Copyright (c) 2013-2015 Marco Hutter - http://www.javagl.de
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation
* files (the "Software"), to deal in the Software without
* restriction, including without limitation the rights to use,
* copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following
* conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
* OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
* HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
* OTHER DEALINGS IN THE SOFTWARE.
*/
package de.javagl.viewer;
import java.util.Objects;
import java.util.function.Predicate;
/**
* Methods to create predicate instances.
*
* The main purpose of these methods is to create predicates that offer
* a human-readable and sensible toString
representation.
*
* This class is not part of the public API, and may be omitted in the future.
*/
public class Predicates
{
/**
* Create a predicate with the given string representation, that
* has its and
, or
and negate
* methods implemented by delegating to the methods of this class.
*
* @param p The input predicate. May not be null
.
* @param string The string representation of the predicate
* @return The predicate
*/
public static Predicate create(Predicate super T> p, String string)
{
Objects.requireNonNull(p);
return new Predicate()
{
@Override
public boolean test(T t)
{
return p.test(t);
}
@Override
public Predicate and(Predicate super T> other)
{
return Predicates.and(this, other);
}
@Override
public Predicate negate()
{
return Predicates.negate(this);
}
@Override
public Predicate or(Predicate super T> other)
{
return Predicates.or(this, other);
}
@Override
public String toString()
{
return string;
}
};
}
/**
* Returns a predicate that is a short-circuiting conjunction of
* the given predicates, and whose string representation resembles
* the code of this condition.
*
* @param p0 The first predicate. May not be null
.
* @param p1 The second predicate. May not be null
.
* @return The resulting predicate
*/
public static Predicate and(
Predicate super T> p0,
Predicate super T> p1)
{
Objects.requireNonNull(p0);
Objects.requireNonNull(p1);
return new Predicate()
{
@Override
public boolean test(T t)
{
return p0.test(t) && p1.test(t);
}
@Override
public String toString()
{
return "(" + p0 + " && " + p1 + ")";
}
};
}
/**
* Returns a predicate that is a short-circuiting disjunction of
* the given predicates, and whose string representation resembles
* the code of this condition.
*
* @param p0 The first predicate. May not be null
.
* @param p1 The second predicate. May not be null
.
* @return The resulting predicate
*/
public static Predicate or(
Predicate super T> p0,
Predicate super T> p1)
{
Objects.requireNonNull(p0);
Objects.requireNonNull(p1);
return new Predicate()
{
@Override
public boolean test(T t)
{
return p0.test(t) || p1.test(t);
}
@Override
public String toString()
{
return "(" + p0 + " || " + p1 + ")";
}
};
}
/**
* Returns a predicate that is a negation of the given predicate, and
* whose string representation resembles the code of this condition.
*
* @param p The predicate. May not be null
.
* @return The resulting predicate
*/
public static Predicate negate(
Predicate super T> p)
{
Objects.requireNonNull(p);
return new Predicate()
{
@Override
public boolean test(T t)
{
return !p.test(t);
}
@Override
public String toString()
{
return "!(" + p + ")";
}
};
}
/**
* Private constructor to prevent instantiation
*/
private Predicates()
{
// Private constructor to prevent instantiation
}
}