Class NOPClosure<T>
- java.lang.Object
-
- org.apache.commons.collections4.functors.NOPClosure<T>
-
- Type Parameters:
T- the type of the input to the operation.
- All Implemented Interfaces:
java.io.Serializable,java.util.function.Consumer<T>,Closure<T>
public final class NOPClosure<T> extends java.lang.Object implements Closure<T>, java.io.Serializable
Closure implementation that does nothing.- Since:
- 3.0
- See Also:
- Serialized Form
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description voidexecute(T input)Do nothing.static <E> Closure<E>nopClosure()Factory returning the singleton instance.
-
-
-
Method Detail
-
nopClosure
public static <E> Closure<E> nopClosure()
Factory returning the singleton instance.- Type Parameters:
E- the type that the closure acts on- Returns:
- the singleton instance
- Since:
- 3.1
-
-