Enum UriResolution

java.lang.Object
java.lang.Enum<UriResolution>
org.apache.juneau.UriResolution
All Implemented Interfaces:
Serializable, Comparable<UriResolution>, java.lang.constant.Constable

public enum UriResolution extends Enum<UriResolution>
Identifies the possible types of URL resolution.
See Also:
  • Enum Constant Details

    • ABSOLUTE

      public static final UriResolution ABSOLUTE
      Resolve to an absolute URL.

      (e.g. "http://host:port/context-root/servlet-path/path-info")

    • ROOT_RELATIVE

      public static final UriResolution ROOT_RELATIVE
      Resolve to a root-relative URL.

      (e.g. "/context-root/servlet-path/path-info")

    • NONE

      public static final UriResolution NONE
      Don't do any URL resolution.
  • Method Details

    • values

      public static UriResolution[] 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 UriResolution 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