Module net.luis.utils
Package net.luis.utils.annotation
package net.luis.utils.annotation
-
ClassDescriptionTypes that are annotated with this annotation are considered to be automatically initialized.Annotations to indicate that a parameter or local variable is ignored.Indicates that the parameter or local variable is always ignored.
Passing a null value to a parameter or local variable that is annotated with this annotation
will be safe and will not cause any errors.Indicates that the parameter or local variable is maybe ignored.
The reason for this could be that there is a rare case where the parameter or local variable
is used or that passing a null value to the parameter or local variable will cause an error.Indicates that a parameter is never ignored.
This is the default behavior of any parameter in java.Types that are annotated with this annotation are considered to be used internally.
They are not intended to be used by the user, because this may cause an unexpected behavior.This annotation is used to indicate that the annotated element is used by reflection.
When modifying the annotated element, this may cause an unexpected behavior or an error.
Accessing but not modifying the annotated element is safe.