public final class Procedures extends Object
| Modifier and Type | Class and Description |
|---|---|
static class |
Procedures.SynchronizedProcedure<T> |
| Modifier and Type | Method and Description |
|---|---|
static <T> org.eclipse.collections.api.block.procedure.Procedure<T> |
append(Appendable appendable) |
static <T,P> org.eclipse.collections.api.block.procedure.Procedure<T> |
bind(org.eclipse.collections.api.block.procedure.Procedure2<? super T,? super P> procedure,
P parameter) |
static <T> CaseProcedure<T> |
caseDefault(org.eclipse.collections.api.block.procedure.Procedure<? super T> defaultProcedure) |
static <T> CaseProcedure<T> |
caseDefault(org.eclipse.collections.api.block.procedure.Procedure<? super T> defaultProcedure,
org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate,
org.eclipse.collections.api.block.procedure.Procedure<? super T> procedure) |
static <T> org.eclipse.collections.api.block.procedure.Procedure<T> |
cast(org.eclipse.collections.api.block.procedure.Procedure<T> procedure)
Allows a Java 8 lambda and method to be used in a forEach method without requiring a cast.
|
static <T> org.eclipse.collections.api.block.procedure.Procedure<T> |
fromObjectIntProcedure(org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure<? super T> objectIntProcedure) |
static <T> org.eclipse.collections.api.block.procedure.Procedure<T> |
fromProcedureWithInt(org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure<? super T> objectIntProcedure)
Deprecated.
since 1.2 - Inlineable
|
static <T> org.eclipse.collections.api.block.procedure.Procedure<T> |
ifElse(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate,
org.eclipse.collections.api.block.procedure.Procedure<? super T> trueProcedure,
org.eclipse.collections.api.block.procedure.Procedure<? super T> falseProcedure) |
static <T> org.eclipse.collections.api.block.procedure.Procedure<T> |
ifTrue(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate,
org.eclipse.collections.api.block.procedure.Procedure<? super T> block) |
static <T> org.eclipse.collections.api.block.procedure.Procedure<T> |
println(PrintStream stream) |
static <T> org.eclipse.collections.api.block.procedure.Procedure<T> |
synchronizedEach(org.eclipse.collections.api.block.procedure.Procedure<T> procedure) |
static <T> org.eclipse.collections.api.block.procedure.Procedure<T> |
throwing(ThrowingProcedure<T> throwingProcedure) |
public static <T> org.eclipse.collections.api.block.procedure.Procedure<T> cast(org.eclipse.collections.api.block.procedure.Procedure<T> procedure)
public static <T> org.eclipse.collections.api.block.procedure.Procedure<T> println(PrintStream stream)
public static <T> org.eclipse.collections.api.block.procedure.Procedure<T> append(Appendable appendable)
public static <T> org.eclipse.collections.api.block.procedure.Procedure<T> throwing(ThrowingProcedure<T> throwingProcedure)
@Deprecated public static <T> org.eclipse.collections.api.block.procedure.Procedure<T> fromProcedureWithInt(org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure<? super T> objectIntProcedure)
public static <T> org.eclipse.collections.api.block.procedure.Procedure<T> fromObjectIntProcedure(org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure<? super T> objectIntProcedure)
public static <T> org.eclipse.collections.api.block.procedure.Procedure<T> ifTrue(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate,
org.eclipse.collections.api.block.procedure.Procedure<? super T> block)
public static <T> org.eclipse.collections.api.block.procedure.Procedure<T> ifElse(org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate,
org.eclipse.collections.api.block.procedure.Procedure<? super T> trueProcedure,
org.eclipse.collections.api.block.procedure.Procedure<? super T> falseProcedure)
public static <T> CaseProcedure<T> caseDefault(org.eclipse.collections.api.block.procedure.Procedure<? super T> defaultProcedure)
public static <T> CaseProcedure<T> caseDefault(org.eclipse.collections.api.block.procedure.Procedure<? super T> defaultProcedure, org.eclipse.collections.api.block.predicate.Predicate<? super T> predicate, org.eclipse.collections.api.block.procedure.Procedure<? super T> procedure)
public static <T> org.eclipse.collections.api.block.procedure.Procedure<T> synchronizedEach(org.eclipse.collections.api.block.procedure.Procedure<T> procedure)
public static <T,P> org.eclipse.collections.api.block.procedure.Procedure<T> bind(org.eclipse.collections.api.block.procedure.Procedure2<? super T,? super P> procedure,
P parameter)
Copyright © 2004–2017. All rights reserved.