Annotation Type ObjectNamer.ConstrTypes

Enclosing class:
ObjectNamer

public static @interface ObjectNamer.ConstrTypes
Constructor types. This annotation provides information about the types of a constructor's arguments. Please see the extended description for a detailed description of how this annotation is used.
  • Optional Element Summary

    Optional Elements
    Modifier and Type
    Optional Element
    Description
    Exceptions a constructor may throw.
    Types for a constructor.
  • Element Details

    • value

      String[] value
      Types for a constructor. The value is an array of strings, each providing the type of a constructor's arguments. The order is the same as the order of the constructor's arguments.
      Returns:
      the types
      Default:
      {}
    • exceptions

      String[] exceptions
      Exceptions a constructor may throw. The value is an array of strings, each containing the class name of an exception.
      Returns:
      the exceptions
      Default:
      {}