com.google.ical.util.Predicates Maven / Gradle / Ivy
The newest version!
// CopyrightGoogle Inc. All rights reserved.
package com.google.ical.util;
import java.io.Serializable;
import java.util.Collection;
/**
* static methods for creating the standard set of {@link Predicate} objects.
*/
public class Predicates {
private Predicates() {
// uninstantiable
}
/*
* For constant Predicates a single instance will suffice; we'll cast it to
* the right parameterized type on demand.
*/
private static final Predicate> ALWAYS_TRUE =
new AlwaysTruePredicate