- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
When a
YaegerEntity needs to be processed, in general meaning it should be passed as a parameter
to a specific method, this functional interface can be used as the basis for a Lambda expression.-
Method Summary
Modifier and TypeMethodDescriptionvoidprocess(YaegerEntity yaegerEntity) Process the givenYaegerEntity.
-
Method Details
-
process
Process the givenYaegerEntity.- Parameters:
yaegerEntity- TheYaegerEntitythat should be processed.
-