Annotation Interface First
Sets the parameter to the first object in the cause chain of the
parameter type.
- See Also:
-
Optional Element Summary
Optional ElementsModifier and TypeOptional ElementDescriptionboolean
If true then the behavior of the typeFilter is reversed and the specified types are excluded rather than included.Class<?>[]
If specified the possible type for the returned object (normally specified by the type of the annotated parameter) is restricted to only the specified types.
-
Element Details
-
typeFilter
Class<?>[] typeFilterIf specified the possible type for the returned object (normally specified by the type of the annotated parameter) is restricted to only the specified types.For exampled annotating a parameter of type Monster would normally accept all entities extending Monster, however with the includes specified as Enderman and Zombie the possible Monsters returned would be restricted to entities extending either Enderman and Zombie.
- Returns:
- The included classes, if empty then the type is not restricted
- Default:
- {}
-
inverse
boolean inverseIf true then the behavior of the typeFilter is reversed and the specified types are excluded rather than included.- Returns:
- If the type filter is reversed
- Default:
- false
-