Class FormDataAnnotation

java.lang.Object
org.apache.juneau.http.annotation.FormDataAnnotation

public class FormDataAnnotation extends Object
Utility classes and methods for the @FormData annotation.
See Also:
  • Field Details

  • Constructor Details

  • Method Details

    • create

      Instantiates a new builder for this class.
      Returns:
      A new builder object.
    • create

      public static FormDataAnnotation.Builder create(Class<?>... on)
      Instantiates a new builder for this class.
      Parameters:
      on - The targets this annotation applies to.
      Returns:
      A new builder object.
    • create

      public static FormDataAnnotation.Builder create(String... on)
      Instantiates a new builder for this class.
      Parameters:
      on - The targets this annotation applies to.
      Returns:
      A new builder object.
    • empty

      public static boolean empty(FormData a)
      Returns true if the specified annotation contains all default values.
      Parameters:
      a - The annotation to check.
      Returns:
      true if the specified annotation contains all default values.
    • findName

      public static Value<String> findName(ParamInfo pi)
      Finds the name from the specified lists of annotations.

      The last matching name found is returned.

      Parameters:
      pi - The parameter.
      Returns:
      The last matching name, or Value.empty() if not found.
    • findDef

      public static Value<String> findDef(ParamInfo pi)
      Finds the default value from the specified list of annotations.
      Parameters:
      pi - The parameter.
      Returns:
      The last matching default value, or Value.empty() if not found.