Annotation Type Parameter


@Documented @Retention(RUNTIME) @Target(METHOD) public @interface Parameter
Parameter
  • Optional Element Summary

    Optional Elements
    Modifier and Type
    Optional Element
    Description
    boolean
    If append=true, append new value to exist value instead of overriding it.
    boolean
    If attribute=false, ignore it when processing refresh()/getMetadata()/equals()/toString()
    boolean
    if escaped=true, escape it when append parameters to url
    boolean
    If excluded=true, ignore it when append parameters to url
    Specify the parameter key when append parameters to url
    boolean
    If required=true, the value must not be empty when append to url
  • Element Details

    • key

      String key
      Specify the parameter key when append parameters to url
      Default:
      ""
    • required

      boolean required
      If required=true, the value must not be empty when append to url
      Default:
      false
    • excluded

      boolean excluded
      If excluded=true, ignore it when append parameters to url
      Default:
      false
    • escaped

      boolean escaped
      if escaped=true, escape it when append parameters to url
      Default:
      false
    • attribute

      boolean attribute
      If attribute=false, ignore it when processing refresh()/getMetadata()/equals()/toString()
      Default:
      true
    • append

      boolean append
      If append=true, append new value to exist value instead of overriding it.
      Default:
      false