public static enum TemplateRequestURLBuilder.EncodingStyle extends Enum<TemplateRequestURLBuilder.EncodingStyle>
| Enum Constant and Description |
|---|
form
URL form encoding.
|
fragment
URL fragment encoding.
|
none
No encoding.
|
path
URL path encoding.
|
| Modifier and Type | Method and Description |
|---|---|
static TemplateRequestURLBuilder.EncodingStyle |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TemplateRequestURLBuilder.EncodingStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TemplateRequestURLBuilder.EncodingStyle none
public static final TemplateRequestURLBuilder.EncodingStyle form
UrlEscapers.urlFormParameterEscaper()public static final TemplateRequestURLBuilder.EncodingStyle path
UrlEscapers.urlPathSegmentEscaper()public static final TemplateRequestURLBuilder.EncodingStyle fragment
UrlEscapers.urlFragmentEscaper()public static TemplateRequestURLBuilder.EncodingStyle[] values()
for (TemplateRequestURLBuilder.EncodingStyle c : TemplateRequestURLBuilder.EncodingStyle.values()) System.out.println(c);
public static TemplateRequestURLBuilder.EncodingStyle valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 1999–2019 Shibboleth Consortium. All rights reserved.