Enum Class JerseyQueryParamStyle

java.lang.Object
java.lang.Enum<JerseyQueryParamStyle>
org.glassfish.jersey.uri.JerseyQueryParamStyle
All Implemented Interfaces:
Serializable, Comparable<JerseyQueryParamStyle>, java.lang.constant.Constable

public enum JerseyQueryParamStyle extends Enum<JerseyQueryParamStyle>
JerseyQueryParamStyle is used to specify the desired format of query param when multiple values are sent for the same parameter.
  • Enum Constant Details

    • MULTI_PAIRS

      public static final JerseyQueryParamStyle MULTI_PAIRS
      Multiple parameter instances, e.g.: foo=v1&foo=v2&foo=v3 This is the default query format.
    • COMMA_SEPARATED

      public static final JerseyQueryParamStyle COMMA_SEPARATED
      A single parameter instance with multiple, comma-separated values, e.g.: foo=v1,v2,v3
    • ARRAY_PAIRS

      public static final JerseyQueryParamStyle ARRAY_PAIRS
      Multiple parameter instances with square brackets for each parameter, e.g.: foo[]=v1&foo[]=v2&foo[]=v3
  • Method Details

    • values

      public static JerseyQueryParamStyle[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static JerseyQueryParamStyle valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null