java.lang.Object
net.luis.utils.annotation.Ignored
Annotations to indicate that a parameter or local variable is ignored.
Will be removed after the final release of java's unnamed variables.
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic @interface
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.static @interface
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.static @interface
Indicates that a parameter is never ignored.
This is the default behavior of any parameter in java. -
Constructor Summary
ConstructorsModifierConstructorDescriptionprivate
Ignored()
Private constructor to prevent instantiation.
This is a static helper class. -
Method Summary
-
Constructor Details
-
Ignored
private Ignored()Private constructor to prevent instantiation.
This is a static helper class.
-