Class Ignored

java.lang.Object
net.luis.utils.annotation.Ignored

public final class Ignored extends Object
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 Classes
    Modifier and Type
    Class
    Description
    static @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

    Constructors
    Modifier
    Constructor
    Description
    private
    Private constructor to prevent instantiation.
    This is a static helper class.
  • Method Summary

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • Ignored

      private Ignored()
      Private constructor to prevent instantiation.
      This is a static helper class.