public static enum GrpcJsonTranscoder.UrlUnescapeSpec extends Enum<GrpcJsonTranscoder.UrlUnescapeSpec> implements com.google.protobuf.ProtocolMessageEnum
envoy.extensions.filters.http.grpc_json_transcoder.v3.GrpcJsonTranscoder.UrlUnescapeSpec| Enum Constant and Description |
|---|
ALL_CHARACTERS
URL path parameters will be fully URI-decoded.
|
ALL_CHARACTERS_EXCEPT_RESERVED
URL path parameters will not decode RFC 6570 reserved characters.
|
ALL_CHARACTERS_EXCEPT_SLASH
URL path parameters will be fully URI-decoded except in
cases of single segment matches in reserved expansion, where "%2F" will be
left encoded.
|
UNRECOGNIZED |
| Modifier and Type | Field and Description |
|---|---|
static int |
ALL_CHARACTERS_EXCEPT_RESERVED_VALUE
URL path parameters will not decode RFC 6570 reserved characters.
|
static int |
ALL_CHARACTERS_EXCEPT_SLASH_VALUE
URL path parameters will be fully URI-decoded except in
cases of single segment matches in reserved expansion, where "%2F" will be
left encoded.
|
static int |
ALL_CHARACTERS_VALUE
URL path parameters will be fully URI-decoded.
|
| Modifier and Type | Method and Description |
|---|---|
static GrpcJsonTranscoder.UrlUnescapeSpec |
forNumber(int value) |
static com.google.protobuf.Descriptors.EnumDescriptor |
getDescriptor() |
com.google.protobuf.Descriptors.EnumDescriptor |
getDescriptorForType() |
int |
getNumber() |
com.google.protobuf.Descriptors.EnumValueDescriptor |
getValueDescriptor() |
static com.google.protobuf.Internal.EnumLiteMap<GrpcJsonTranscoder.UrlUnescapeSpec> |
internalGetValueMap() |
static GrpcJsonTranscoder.UrlUnescapeSpec |
valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc) |
static GrpcJsonTranscoder.UrlUnescapeSpec |
valueOf(int value)
Deprecated.
Use
forNumber(int) instead. |
static GrpcJsonTranscoder.UrlUnescapeSpec |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GrpcJsonTranscoder.UrlUnescapeSpec[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GrpcJsonTranscoder.UrlUnescapeSpec ALL_CHARACTERS_EXCEPT_RESERVED
URL path parameters will not decode RFC 6570 reserved characters. For example, segment `%2f%23/%20%2523` is unescaped to `%2f%23/ %23`.
ALL_CHARACTERS_EXCEPT_RESERVED = 0;public static final GrpcJsonTranscoder.UrlUnescapeSpec ALL_CHARACTERS_EXCEPT_SLASH
URL path parameters will be fully URI-decoded except in cases of single segment matches in reserved expansion, where "%2F" will be left encoded. For example, segment `%2f%23/%20%2523` is unescaped to `%2f#/ %23`.
ALL_CHARACTERS_EXCEPT_SLASH = 1;public static final GrpcJsonTranscoder.UrlUnescapeSpec ALL_CHARACTERS
URL path parameters will be fully URI-decoded. For example, segment `%2f%23/%20%2523` is unescaped to `/#/ %23`.
ALL_CHARACTERS = 2;public static final GrpcJsonTranscoder.UrlUnescapeSpec UNRECOGNIZED
public static final int ALL_CHARACTERS_EXCEPT_RESERVED_VALUE
URL path parameters will not decode RFC 6570 reserved characters. For example, segment `%2f%23/%20%2523` is unescaped to `%2f%23/ %23`.
ALL_CHARACTERS_EXCEPT_RESERVED = 0;public static final int ALL_CHARACTERS_EXCEPT_SLASH_VALUE
URL path parameters will be fully URI-decoded except in cases of single segment matches in reserved expansion, where "%2F" will be left encoded. For example, segment `%2f%23/%20%2523` is unescaped to `%2f#/ %23`.
ALL_CHARACTERS_EXCEPT_SLASH = 1;public static final int ALL_CHARACTERS_VALUE
URL path parameters will be fully URI-decoded. For example, segment `%2f%23/%20%2523` is unescaped to `/#/ %23`.
ALL_CHARACTERS = 2;public static GrpcJsonTranscoder.UrlUnescapeSpec[] values()
for (GrpcJsonTranscoder.UrlUnescapeSpec c : GrpcJsonTranscoder.UrlUnescapeSpec.values()) System.out.println(c);
public static GrpcJsonTranscoder.UrlUnescapeSpec 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 nullpublic final int getNumber()
getNumber in interface com.google.protobuf.Internal.EnumLitegetNumber in interface com.google.protobuf.ProtocolMessageEnum@Deprecated public static GrpcJsonTranscoder.UrlUnescapeSpec valueOf(int value)
forNumber(int) instead.public static GrpcJsonTranscoder.UrlUnescapeSpec forNumber(int value)
public static com.google.protobuf.Internal.EnumLiteMap<GrpcJsonTranscoder.UrlUnescapeSpec> internalGetValueMap()
public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor()
getValueDescriptor in interface com.google.protobuf.ProtocolMessageEnumpublic final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType()
getDescriptorForType in interface com.google.protobuf.ProtocolMessageEnumpublic static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor()
public static GrpcJsonTranscoder.UrlUnescapeSpec valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)
Copyright © 2018–2021 The Envoy Project. All rights reserved.