枚举 DefaultUriBuilderFactory.EncodingMode
- java.lang.Object
- java.lang.Enum<DefaultUriBuilderFactory.EncodingMode>
- org.springframework.web.util.DefaultUriBuilderFactory.EncodingMode
public static enum DefaultUriBuilderFactory.EncodingMode extends Enum<DefaultUriBuilderFactory.EncodingMode>
Enum to represent multiple URI encoding strategies. The following are available:
枚举常量概要
枚举常量 枚举常量 说明 NONE
No encoding should be applied.TEMPLATE_AND_VALUES
Pre-encode the URI template first, then strictly encode URI variables when expanded, with the following rules: For the URI template replace only non-ASCII and illegal (within a given URI component type) characters with escaped octets.URI_COMPONENT
Expand URI variables first, and then encode the resulting URI component values, replacing only non-ASCII and illegal (within a given URI component type) characters, but not characters with reserved meaning.VALUES_ONLY
Does not encode the URI template and instead applies strict encoding to URI variables viaUriUtils.encodeUriVariables(java.util.Map<java.lang.String, ?>)
prior to expanding them into the template.
方法概要
所有方法 静态方法 具体方法 修饰符和类型 方法 说明 static DefaultUriBuilderFactory.EncodingMode
valueOf(String name)
返回带有指定名称的该类型的枚举常量。static DefaultUriBuilderFactory.EncodingMode[]
values()
按照声明该枚举类型的常量的顺序, 返回 包含这些常量的数组。
枚举常量详细资料
TEMPLATE_AND_VALUES
public static final DefaultUriBuilderFactory.EncodingMode TEMPLATE_AND_VALUES
Pre-encode the URI template first, then strictly encode URI variables when expanded, with the following rules:- For the URI template replace only non-ASCII and illegal (within a given URI component type) characters with escaped octets.
- For URI variables do the same and also replace characters with reserved meaning.
For most cases, this mode is most likely to give the expected result because in treats URI variables as opaque data to be fully encoded, while
URI_COMPONENT
by comparison is useful only if intentionally expanding URI variables with reserved characters.- 从以下版本开始:
- 5.0.8
- 另请参阅:
UriComponentsBuilder.encode()
VALUES_ONLY
public static final DefaultUriBuilderFactory.EncodingMode VALUES_ONLY
Does not encode the URI template and instead applies strict encoding to URI variables viaUriUtils.encodeUriVariables(java.util.Map<java.lang.String, ?>)
prior to expanding them into the template.
URI_COMPONENT
public static final DefaultUriBuilderFactory.EncodingMode URI_COMPONENT
Expand URI variables first, and then encode the resulting URI component values, replacing only non-ASCII and illegal (within a given URI component type) characters, but not characters with reserved meaning.
NONE
public static final DefaultUriBuilderFactory.EncodingMode NONE
No encoding should be applied.
方法详细资料
values
public static DefaultUriBuilderFactory.EncodingMode[] values()
按照声明该枚举类型的常量的顺序, 返回 包含这些常量的数组。该方法可用于迭代 常量, 如下所示:for (DefaultUriBuilderFactory.EncodingMode c : DefaultUriBuilderFactory.EncodingMode.values()) System.out.println(c);
- 返回:
- 按照声明该枚举类型的常量的顺序返回的包含这些常量的数组
valueOf
public static DefaultUriBuilderFactory.EncodingMode valueOf(String name)
返回带有指定名称的该类型的枚举常量。 字符串必须与用于声明该类型的枚举常量的 标识符完全匹配。(不允许有多余 的空格字符。)- 参数:
name
- 要返回的枚举常量的名称。- 返回:
- 返回带有指定名称的枚举常量
- 抛出:
IllegalArgumentException
- 如果该枚举类型没有带有指定名称的常量NullPointerException
- 如果参数为空值