Annotation P

  • All Implemented Interfaces:
    java.lang.annotation.Annotation

    @Retention(value = RUNTIME)@Target(value = {}) 
    public @interface P
    
                        

    Parameter of a Tool

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Field Summary

      Fields 
      Modifier and Type Field Description
    • Constructor Summary

      Constructors 
      Constructor Description
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • Method Summary

      Modifier and Type Method Description
      abstract String value() Description of a parameter
      abstract boolean required() Whether the parameter is required
      • Methods inherited from class java.lang.annotation.Annotation

        annotationType, equals, hashCode, toString
      • Methods inherited from class java.lang.Object

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

    • Method Detail

      • value

         abstract String value()

        Description of a parameter

        Returns:

        the description of a parameter

      • required

         abstract boolean required()

        Whether the parameter is required

        Returns:

        true if the parameter is required, false otherwise Default is true.