Uses of Interface
org.multiverse.api.predicates.Predicate
-
Packages that use Predicate Package Description org.multiverse.api.predicates org.multiverse.api.references org.multiverse.stms.gamma.transactionalobjects -
-
Uses of Predicate in org.multiverse.api.predicates
Classes in org.multiverse.api.predicates that implement Predicate Modifier and Type Class Description classBooleanPredicateA predicate that checks if some value leads to true or false.classDoublePredicateA predicate that checks if some value leads to true or false.classIntPredicateA predicate that checks if some value leads to true or false.classLongPredicateA predicate that checks if some value leads to true or false.Fields in org.multiverse.api.predicates declared as Predicate Modifier and Type Field Description private static PredicatePredicates. IsNotNullPredicateprivate static PredicatePredicates. IsNullPredicateMethods in org.multiverse.api.predicates that return Predicate Modifier and Type Method Description static <E> Predicate<E>Predicates. newIsNotNullPredicate()Creates a Predicate that checks if the passed object is not null.static <E> Predicate<E>Predicates. newIsNullPredicate()Creates a Predicate that checks if the passed object is null. -
Uses of Predicate in org.multiverse.api.references
Methods in org.multiverse.api.references with parameters of type Predicate Modifier and Type Method Description voidTxnRef. await(Predicate<E> predicate)Awaits until the predicate holds.voidTxnRef. await(Txn txn, Predicate<E> predicate)Awaits until the predicate holds using the provided txn. -
Uses of Predicate in org.multiverse.stms.gamma.transactionalobjects
Methods in org.multiverse.stms.gamma.transactionalobjects with parameters of type Predicate Modifier and Type Method Description voidGammaTxnRef. await(Predicate<E> predicate)voidGammaTxnRef. await(Txn tx, Predicate<E> predicate)voidGammaTxnRef. await(GammaTxn tx, Predicate<E> predicate)
-