public enum HttpHeaderRuleEnum extends Enum<HttpHeaderRuleEnum>
| Enum Constant and Description |
|---|
add_header |
hide_header |
ignore_header |
modify_header |
modify_request_header |
| Modifier and Type | Method and Description |
|---|---|
static HttpHeaderRuleEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HttpHeaderRuleEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HttpHeaderRuleEnum add_header
public static final HttpHeaderRuleEnum hide_header
public static final HttpHeaderRuleEnum modify_header
public static final HttpHeaderRuleEnum ignore_header
public static final HttpHeaderRuleEnum modify_request_header
public static HttpHeaderRuleEnum[] values()
for (HttpHeaderRuleEnum c : HttpHeaderRuleEnum.values()) System.out.println(c);
public static HttpHeaderRuleEnum 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 © 2023. All rights reserved.