Interface JCasProcessor<E extends java.lang.Throwable>
-
- Type Parameters:
E- Thrown exception.
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface JCasProcessor<E extends java.lang.Throwable>A functional interface for a JCas processor.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default JCasProcessor<E>andThen(JCasProcessor<E> after)Returns a composedJCasProcessorlikeandThen(JCasProcessor).voidprocess(JCas aJCas)Accepts the processor.
-
-
-
Method Detail
-
andThen
default JCasProcessor<E> andThen(JCasProcessor<E> after)
Returns a composedJCasProcessorlikeandThen(JCasProcessor).- Parameters:
after- the operation to perform after this operation- Returns:
- a composed
JCasProcessorlikeandThen(JCasProcessor). - Throws:
java.lang.NullPointerException- whenafteris null
-
-