Enum HandleQueryString

java.lang.Object
java.lang.Enum<HandleQueryString>
com.adobe.acs.commons.redirects.models.HandleQueryString
All Implemented Interfaces:
Serializable, Comparable<HandleQueryString>

public enum HandleQueryString extends Enum<HandleQueryString>
how to handle query strings in the redirect
  • Enum Constant Details

    • IGNORE

      public static final HandleQueryString IGNORE
      ignore, i.e. don't append query string from the request
    • REPLACE

      public static final HandleQueryString REPLACE
      Replace query string in the target with query string in the request
    • COMBINE

      public static final HandleQueryString COMBINE
      Combine query string in the target with query string in the request
  • Method Details

    • values

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

      public static HandleQueryString valueOf(String name)
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified name
      NullPointerException - if the argument is null