Class NOPClosure<E>
- java.lang.Object
-
- org.apache.commons.collections4.functors.NOPClosure<E>
-
- All Implemented Interfaces:
java.io.Serializable
,Closure<E>
public final class NOPClosure<E> extends java.lang.Object implements Closure<E>, java.io.Serializable
Closure implementation that does nothing.- Since:
- 3.0
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static Closure
INSTANCE
Singleton predicate instanceprivate static long
serialVersionUID
Serial version UID
-
Constructor Summary
Constructors Modifier Constructor Description private
NOPClosure()
Constructor.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description void
execute(E input)
Do nothing.static <E> Closure<E>
nopClosure()
Factory returning the singleton instance.private java.lang.Object
readResolve()
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
Serial version UID- See Also:
- Constant Field Values
-
INSTANCE
public static final Closure INSTANCE
Singleton predicate 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
-
execute
public void execute(E input)
Do nothing.
-
readResolve
private java.lang.Object readResolve()
-
-