Package build.buf.validate
Class StringRules.Builder
- java.lang.Object
-
- com.google.protobuf.AbstractMessageLite.Builder
-
- com.google.protobuf.AbstractMessage.Builder<BuilderT>
-
- com.google.protobuf.GeneratedMessage.Builder<StringRules.Builder>
-
- build.buf.validate.StringRules.Builder
-
- All Implemented Interfaces:
StringRulesOrBuilder,com.google.protobuf.Message.Builder,com.google.protobuf.MessageLite.Builder,com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder,java.lang.Cloneable
- Enclosing class:
- StringRules
public static final class StringRules.Builder extends com.google.protobuf.GeneratedMessage.Builder<StringRules.Builder> implements StringRulesOrBuilder
StringRules describes the constraints applied to `string` values These rules may also be applied to the `google.protobuf.StringValue` Well-Known-Type.
Protobuf typebuf.validate.StringRules
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringRules.BuilderaddAllIn(java.lang.Iterable<java.lang.String> values)`in` specifies that the field value must be equal to one of the specified values.StringRules.BuilderaddAllNotIn(java.lang.Iterable<java.lang.String> values)`not_in` specifies that the field value cannot be equal to any of the specified values.StringRules.BuilderaddIn(java.lang.String value)`in` specifies that the field value must be equal to one of the specified values.StringRules.BuilderaddInBytes(com.google.protobuf.ByteString value)`in` specifies that the field value must be equal to one of the specified values.StringRules.BuilderaddNotIn(java.lang.String value)`not_in` specifies that the field value cannot be equal to any of the specified values.StringRules.BuilderaddNotInBytes(com.google.protobuf.ByteString value)`not_in` specifies that the field value cannot be equal to any of the specified values.StringRulesbuild()StringRulesbuildPartial()StringRules.Builderclear()StringRules.BuilderclearAddress()`address` specifies that the field value must be either a valid hostname as defined by [RFC 1034](https://tools.ietf.org/html/rfc1034#section-3.5) (which doesn't support internationalized domain names or IDNs) or a valid IP (v4 or v6).StringRules.BuilderclearConst()`const` requires the field value to exactly match the specified value.StringRules.BuilderclearContains()`contains` specifies that the field value must have the specified substring anywhere in the string.StringRules.BuilderclearEmail()`email` specifies that the field value must be a valid email address (addr-spec only) as defined by [RFC 5322](https://tools.ietf.org/html/rfc5322#section-3.4.1).StringRules.BuilderclearHostname()`hostname` specifies that the field value must be a valid hostname as defined by [RFC 1034](https://tools.ietf.org/html/rfc1034#section-3.5).StringRules.BuilderclearIn()`in` specifies that the field value must be equal to one of the specified values.StringRules.BuilderclearIp()`ip` specifies that the field value must be a valid IP (v4 or v6) address, without surrounding square brackets for IPv6 addresses.StringRules.BuilderclearIpPrefix()`ip_prefix` specifies that the field value must be a valid IP (v4 or v6) prefix.StringRules.BuilderclearIpv4()`ipv4` specifies that the field value must be a valid IPv4 address.StringRules.BuilderclearIpv4Prefix()`ipv4_prefix` specifies that the field value must be a valid IPv4 prefix.StringRules.BuilderclearIpv4WithPrefixlen()`ipv4_with_prefixlen` specifies that the field value must be a valid IPv4 address with prefix.StringRules.BuilderclearIpv6()`ipv6` specifies that the field value must be a valid IPv6 address, without surrounding square brackets.StringRules.BuilderclearIpv6Prefix()`ipv6_prefix` specifies that the field value must be a valid IPv6 prefix.StringRules.BuilderclearIpv6WithPrefixlen()`ipv6_with_prefixlen` specifies that the field value must be a valid IPv6 address with prefix length.StringRules.BuilderclearIpWithPrefixlen()`ip_with_prefixlen` specifies that the field value must be a valid IP (v4 or v6) address with prefix length.StringRules.BuilderclearLen()`len` dictates that the field value must have the specified number of characters (Unicode code points), which may differ from the number of bytes in the string.StringRules.BuilderclearLenBytes()`len_bytes` dictates that the field value must have the specified number of bytes.StringRules.BuilderclearMaxBytes()`max_bytes` specifies that the field value must have no more than the specified number of bytes.StringRules.BuilderclearMaxLen()`max_len` specifies that the field value must have no more than the specified number of characters (Unicode code points), which may differ from the number of bytes in the string.StringRules.BuilderclearMinBytes()`min_bytes` specifies that the field value must have at least the specified number of bytes.StringRules.BuilderclearMinLen()`min_len` specifies that the field value must have at least the specified number of characters (Unicode code points), which may differ from the number of bytes in the string.StringRules.BuilderclearNotContains()`not_contains` specifies that the field value must not have the specified substring anywhere in the string.StringRules.BuilderclearNotIn()`not_in` specifies that the field value cannot be equal to any of the specified values.StringRules.BuilderclearPattern()`pattern` specifies that the field value must match the specified regular expression (RE2 syntax), with the expression provided without any delimiters.StringRules.BuilderclearPrefix()`prefix` specifies that the field value must have the specified substring at the beginning of the string.StringRules.BuilderclearStrict()This applies to regexes `HTTP_HEADER_NAME` and `HTTP_HEADER_VALUE` to enable strict header validation.StringRules.BuilderclearSuffix()`suffix` specifies that the field value must have the specified substring at the end of the string.StringRules.BuilderclearUri()`uri` specifies that the field value must be a valid, absolute URI as defined by [RFC 3986](https://tools.ietf.org/html/rfc3986#section-3).StringRules.BuilderclearUriRef()`uri_ref` specifies that the field value must be a valid URI as defined by [RFC 3986](https://tools.ietf.org/html/rfc3986#section-3) and may be either relative or absolute.StringRules.BuilderclearUuid()`uuid` specifies that the field value must be a valid UUID as defined by [RFC 4122](https://tools.ietf.org/html/rfc4122#section-4.1.2).StringRules.BuilderclearWellKnown()StringRules.BuilderclearWellKnownRegex()`well_known_regex` specifies a common well-known pattern defined as a regex.booleangetAddress()`address` specifies that the field value must be either a valid hostname as defined by [RFC 1034](https://tools.ietf.org/html/rfc1034#section-3.5) (which doesn't support internationalized domain names or IDNs) or a valid IP (v4 or v6).java.lang.StringgetConst()`const` requires the field value to exactly match the specified value.com.google.protobuf.ByteStringgetConstBytes()`const` requires the field value to exactly match the specified value.java.lang.StringgetContains()`contains` specifies that the field value must have the specified substring anywhere in the string.com.google.protobuf.ByteStringgetContainsBytes()`contains` specifies that the field value must have the specified substring anywhere in the string.StringRulesgetDefaultInstanceForType()static com.google.protobuf.Descriptors.DescriptorgetDescriptor()com.google.protobuf.Descriptors.DescriptorgetDescriptorForType()booleangetEmail()`email` specifies that the field value must be a valid email address (addr-spec only) as defined by [RFC 5322](https://tools.ietf.org/html/rfc5322#section-3.4.1).booleangetHostname()`hostname` specifies that the field value must be a valid hostname as defined by [RFC 1034](https://tools.ietf.org/html/rfc1034#section-3.5).java.lang.StringgetIn(int index)`in` specifies that the field value must be equal to one of the specified values.com.google.protobuf.ByteStringgetInBytes(int index)`in` specifies that the field value must be equal to one of the specified values.intgetInCount()`in` specifies that the field value must be equal to one of the specified values.com.google.protobuf.ProtocolStringListgetInList()`in` specifies that the field value must be equal to one of the specified values.booleangetIp()`ip` specifies that the field value must be a valid IP (v4 or v6) address, without surrounding square brackets for IPv6 addresses.booleangetIpPrefix()`ip_prefix` specifies that the field value must be a valid IP (v4 or v6) prefix.booleangetIpv4()`ipv4` specifies that the field value must be a valid IPv4 address.booleangetIpv4Prefix()`ipv4_prefix` specifies that the field value must be a valid IPv4 prefix.booleangetIpv4WithPrefixlen()`ipv4_with_prefixlen` specifies that the field value must be a valid IPv4 address with prefix.booleangetIpv6()`ipv6` specifies that the field value must be a valid IPv6 address, without surrounding square brackets.booleangetIpv6Prefix()`ipv6_prefix` specifies that the field value must be a valid IPv6 prefix.booleangetIpv6WithPrefixlen()`ipv6_with_prefixlen` specifies that the field value must be a valid IPv6 address with prefix length.booleangetIpWithPrefixlen()`ip_with_prefixlen` specifies that the field value must be a valid IP (v4 or v6) address with prefix length.longgetLen()`len` dictates that the field value must have the specified number of characters (Unicode code points), which may differ from the number of bytes in the string.longgetLenBytes()`len_bytes` dictates that the field value must have the specified number of bytes.longgetMaxBytes()`max_bytes` specifies that the field value must have no more than the specified number of bytes.longgetMaxLen()`max_len` specifies that the field value must have no more than the specified number of characters (Unicode code points), which may differ from the number of bytes in the string.longgetMinBytes()`min_bytes` specifies that the field value must have at least the specified number of bytes.longgetMinLen()`min_len` specifies that the field value must have at least the specified number of characters (Unicode code points), which may differ from the number of bytes in the string.java.lang.StringgetNotContains()`not_contains` specifies that the field value must not have the specified substring anywhere in the string.com.google.protobuf.ByteStringgetNotContainsBytes()`not_contains` specifies that the field value must not have the specified substring anywhere in the string.java.lang.StringgetNotIn(int index)`not_in` specifies that the field value cannot be equal to any of the specified values.com.google.protobuf.ByteStringgetNotInBytes(int index)`not_in` specifies that the field value cannot be equal to any of the specified values.intgetNotInCount()`not_in` specifies that the field value cannot be equal to any of the specified values.com.google.protobuf.ProtocolStringListgetNotInList()`not_in` specifies that the field value cannot be equal to any of the specified values.java.lang.StringgetPattern()`pattern` specifies that the field value must match the specified regular expression (RE2 syntax), with the expression provided without any delimiters.com.google.protobuf.ByteStringgetPatternBytes()`pattern` specifies that the field value must match the specified regular expression (RE2 syntax), with the expression provided without any delimiters.java.lang.StringgetPrefix()`prefix` specifies that the field value must have the specified substring at the beginning of the string.com.google.protobuf.ByteStringgetPrefixBytes()`prefix` specifies that the field value must have the specified substring at the beginning of the string.booleangetStrict()This applies to regexes `HTTP_HEADER_NAME` and `HTTP_HEADER_VALUE` to enable strict header validation.java.lang.StringgetSuffix()`suffix` specifies that the field value must have the specified substring at the end of the string.com.google.protobuf.ByteStringgetSuffixBytes()`suffix` specifies that the field value must have the specified substring at the end of the string.booleangetUri()`uri` specifies that the field value must be a valid, absolute URI as defined by [RFC 3986](https://tools.ietf.org/html/rfc3986#section-3).booleangetUriRef()`uri_ref` specifies that the field value must be a valid URI as defined by [RFC 3986](https://tools.ietf.org/html/rfc3986#section-3) and may be either relative or absolute.booleangetUuid()`uuid` specifies that the field value must be a valid UUID as defined by [RFC 4122](https://tools.ietf.org/html/rfc4122#section-4.1.2).StringRules.WellKnownCasegetWellKnownCase()KnownRegexgetWellKnownRegex()`well_known_regex` specifies a common well-known pattern defined as a regex.intgetWellKnownRegexValue()`well_known_regex` specifies a common well-known pattern defined as a regex.booleanhasAddress()`address` specifies that the field value must be either a valid hostname as defined by [RFC 1034](https://tools.ietf.org/html/rfc1034#section-3.5) (which doesn't support internationalized domain names or IDNs) or a valid IP (v4 or v6).booleanhasConst()`const` requires the field value to exactly match the specified value.booleanhasContains()`contains` specifies that the field value must have the specified substring anywhere in the string.booleanhasEmail()`email` specifies that the field value must be a valid email address (addr-spec only) as defined by [RFC 5322](https://tools.ietf.org/html/rfc5322#section-3.4.1).booleanhasHostname()`hostname` specifies that the field value must be a valid hostname as defined by [RFC 1034](https://tools.ietf.org/html/rfc1034#section-3.5).booleanhasIp()`ip` specifies that the field value must be a valid IP (v4 or v6) address, without surrounding square brackets for IPv6 addresses.booleanhasIpPrefix()`ip_prefix` specifies that the field value must be a valid IP (v4 or v6) prefix.booleanhasIpv4()`ipv4` specifies that the field value must be a valid IPv4 address.booleanhasIpv4Prefix()`ipv4_prefix` specifies that the field value must be a valid IPv4 prefix.booleanhasIpv4WithPrefixlen()`ipv4_with_prefixlen` specifies that the field value must be a valid IPv4 address with prefix.booleanhasIpv6()`ipv6` specifies that the field value must be a valid IPv6 address, without surrounding square brackets.booleanhasIpv6Prefix()`ipv6_prefix` specifies that the field value must be a valid IPv6 prefix.booleanhasIpv6WithPrefixlen()`ipv6_with_prefixlen` specifies that the field value must be a valid IPv6 address with prefix length.booleanhasIpWithPrefixlen()`ip_with_prefixlen` specifies that the field value must be a valid IP (v4 or v6) address with prefix length.booleanhasLen()`len` dictates that the field value must have the specified number of characters (Unicode code points), which may differ from the number of bytes in the string.booleanhasLenBytes()`len_bytes` dictates that the field value must have the specified number of bytes.booleanhasMaxBytes()`max_bytes` specifies that the field value must have no more than the specified number of bytes.booleanhasMaxLen()`max_len` specifies that the field value must have no more than the specified number of characters (Unicode code points), which may differ from the number of bytes in the string.booleanhasMinBytes()`min_bytes` specifies that the field value must have at least the specified number of bytes.booleanhasMinLen()`min_len` specifies that the field value must have at least the specified number of characters (Unicode code points), which may differ from the number of bytes in the string.booleanhasNotContains()`not_contains` specifies that the field value must not have the specified substring anywhere in the string.booleanhasPattern()`pattern` specifies that the field value must match the specified regular expression (RE2 syntax), with the expression provided without any delimiters.booleanhasPrefix()`prefix` specifies that the field value must have the specified substring at the beginning of the string.booleanhasStrict()This applies to regexes `HTTP_HEADER_NAME` and `HTTP_HEADER_VALUE` to enable strict header validation.booleanhasSuffix()`suffix` specifies that the field value must have the specified substring at the end of the string.booleanhasUri()`uri` specifies that the field value must be a valid, absolute URI as defined by [RFC 3986](https://tools.ietf.org/html/rfc3986#section-3).booleanhasUriRef()`uri_ref` specifies that the field value must be a valid URI as defined by [RFC 3986](https://tools.ietf.org/html/rfc3986#section-3) and may be either relative or absolute.booleanhasUuid()`uuid` specifies that the field value must be a valid UUID as defined by [RFC 4122](https://tools.ietf.org/html/rfc4122#section-4.1.2).booleanhasWellKnownRegex()`well_known_regex` specifies a common well-known pattern defined as a regex.protected com.google.protobuf.GeneratedMessage.FieldAccessorTableinternalGetFieldAccessorTable()booleanisInitialized()StringRules.BuildermergeFrom(StringRules other)StringRules.BuildermergeFrom(com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry)StringRules.BuildermergeFrom(com.google.protobuf.Message other)StringRules.BuildersetAddress(boolean value)`address` specifies that the field value must be either a valid hostname as defined by [RFC 1034](https://tools.ietf.org/html/rfc1034#section-3.5) (which doesn't support internationalized domain names or IDNs) or a valid IP (v4 or v6).StringRules.BuildersetConst(java.lang.String value)`const` requires the field value to exactly match the specified value.StringRules.BuildersetConstBytes(com.google.protobuf.ByteString value)`const` requires the field value to exactly match the specified value.StringRules.BuildersetContains(java.lang.String value)`contains` specifies that the field value must have the specified substring anywhere in the string.StringRules.BuildersetContainsBytes(com.google.protobuf.ByteString value)`contains` specifies that the field value must have the specified substring anywhere in the string.StringRules.BuildersetEmail(boolean value)`email` specifies that the field value must be a valid email address (addr-spec only) as defined by [RFC 5322](https://tools.ietf.org/html/rfc5322#section-3.4.1).StringRules.BuildersetHostname(boolean value)`hostname` specifies that the field value must be a valid hostname as defined by [RFC 1034](https://tools.ietf.org/html/rfc1034#section-3.5).StringRules.BuildersetIn(int index, java.lang.String value)`in` specifies that the field value must be equal to one of the specified values.StringRules.BuildersetIp(boolean value)`ip` specifies that the field value must be a valid IP (v4 or v6) address, without surrounding square brackets for IPv6 addresses.StringRules.BuildersetIpPrefix(boolean value)`ip_prefix` specifies that the field value must be a valid IP (v4 or v6) prefix.StringRules.BuildersetIpv4(boolean value)`ipv4` specifies that the field value must be a valid IPv4 address.StringRules.BuildersetIpv4Prefix(boolean value)`ipv4_prefix` specifies that the field value must be a valid IPv4 prefix.StringRules.BuildersetIpv4WithPrefixlen(boolean value)`ipv4_with_prefixlen` specifies that the field value must be a valid IPv4 address with prefix.StringRules.BuildersetIpv6(boolean value)`ipv6` specifies that the field value must be a valid IPv6 address, without surrounding square brackets.StringRules.BuildersetIpv6Prefix(boolean value)`ipv6_prefix` specifies that the field value must be a valid IPv6 prefix.StringRules.BuildersetIpv6WithPrefixlen(boolean value)`ipv6_with_prefixlen` specifies that the field value must be a valid IPv6 address with prefix length.StringRules.BuildersetIpWithPrefixlen(boolean value)`ip_with_prefixlen` specifies that the field value must be a valid IP (v4 or v6) address with prefix length.StringRules.BuildersetLen(long value)`len` dictates that the field value must have the specified number of characters (Unicode code points), which may differ from the number of bytes in the string.StringRules.BuildersetLenBytes(long value)`len_bytes` dictates that the field value must have the specified number of bytes.StringRules.BuildersetMaxBytes(long value)`max_bytes` specifies that the field value must have no more than the specified number of bytes.StringRules.BuildersetMaxLen(long value)`max_len` specifies that the field value must have no more than the specified number of characters (Unicode code points), which may differ from the number of bytes in the string.StringRules.BuildersetMinBytes(long value)`min_bytes` specifies that the field value must have at least the specified number of bytes.StringRules.BuildersetMinLen(long value)`min_len` specifies that the field value must have at least the specified number of characters (Unicode code points), which may differ from the number of bytes in the string.StringRules.BuildersetNotContains(java.lang.String value)`not_contains` specifies that the field value must not have the specified substring anywhere in the string.StringRules.BuildersetNotContainsBytes(com.google.protobuf.ByteString value)`not_contains` specifies that the field value must not have the specified substring anywhere in the string.StringRules.BuildersetNotIn(int index, java.lang.String value)`not_in` specifies that the field value cannot be equal to any of the specified values.StringRules.BuildersetPattern(java.lang.String value)`pattern` specifies that the field value must match the specified regular expression (RE2 syntax), with the expression provided without any delimiters.StringRules.BuildersetPatternBytes(com.google.protobuf.ByteString value)`pattern` specifies that the field value must match the specified regular expression (RE2 syntax), with the expression provided without any delimiters.StringRules.BuildersetPrefix(java.lang.String value)`prefix` specifies that the field value must have the specified substring at the beginning of the string.StringRules.BuildersetPrefixBytes(com.google.protobuf.ByteString value)`prefix` specifies that the field value must have the specified substring at the beginning of the string.StringRules.BuildersetStrict(boolean value)This applies to regexes `HTTP_HEADER_NAME` and `HTTP_HEADER_VALUE` to enable strict header validation.StringRules.BuildersetSuffix(java.lang.String value)`suffix` specifies that the field value must have the specified substring at the end of the string.StringRules.BuildersetSuffixBytes(com.google.protobuf.ByteString value)`suffix` specifies that the field value must have the specified substring at the end of the string.StringRules.BuildersetUri(boolean value)`uri` specifies that the field value must be a valid, absolute URI as defined by [RFC 3986](https://tools.ietf.org/html/rfc3986#section-3).StringRules.BuildersetUriRef(boolean value)`uri_ref` specifies that the field value must be a valid URI as defined by [RFC 3986](https://tools.ietf.org/html/rfc3986#section-3) and may be either relative or absolute.StringRules.BuildersetUuid(boolean value)`uuid` specifies that the field value must be a valid UUID as defined by [RFC 4122](https://tools.ietf.org/html/rfc4122#section-4.1.2).StringRules.BuildersetWellKnownRegex(KnownRegex value)`well_known_regex` specifies a common well-known pattern defined as a regex.StringRules.BuildersetWellKnownRegexValue(int value)`well_known_regex` specifies a common well-known pattern defined as a regex.-
Methods inherited from class com.google.protobuf.GeneratedMessage.Builder
addRepeatedField, clearField, clearOneof, clone, getAllFields, getField, getFieldBuilder, getOneofFieldDescriptor, getParentForChildren, getRepeatedField, getRepeatedFieldBuilder, getRepeatedFieldCount, getUnknownFields, getUnknownFieldSetBuilder, hasField, hasOneof, internalGetMapField, internalGetMapFieldReflection, internalGetMutableMapField, internalGetMutableMapFieldReflection, isClean, markClean, mergeUnknownFields, mergeUnknownLengthDelimitedField, mergeUnknownVarintField, newBuilderForField, onBuilt, onChanged, parseUnknownField, setField, setRepeatedField, setUnknownFields, setUnknownFieldSetBuilder, setUnknownFieldsProto3
-
Methods inherited from class com.google.protobuf.AbstractMessage.Builder
findInitializationErrors, getInitializationErrorString, internalMergeFrom, mergeFrom, mergeFrom, mergeFrom, mergeFrom, mergeFrom, mergeFrom, mergeFrom, mergeFrom, mergeFrom, newUninitializedMessageException, toString
-
Methods inherited from class com.google.protobuf.AbstractMessageLite.Builder
addAll, addAll, mergeDelimitedFrom, mergeDelimitedFrom, mergeFrom, newUninitializedMessageException
-
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
Method Detail
-
getDescriptor
public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
-
internalGetFieldAccessorTable
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable()
- Specified by:
internalGetFieldAccessorTablein classcom.google.protobuf.GeneratedMessage.Builder<StringRules.Builder>
-
clear
public StringRules.Builder clear()
- Specified by:
clearin interfacecom.google.protobuf.Message.Builder- Specified by:
clearin interfacecom.google.protobuf.MessageLite.Builder- Overrides:
clearin classcom.google.protobuf.GeneratedMessage.Builder<StringRules.Builder>
-
getDescriptorForType
public com.google.protobuf.Descriptors.Descriptor getDescriptorForType()
- Specified by:
getDescriptorForTypein interfacecom.google.protobuf.Message.Builder- Specified by:
getDescriptorForTypein interfacecom.google.protobuf.MessageOrBuilder- Overrides:
getDescriptorForTypein classcom.google.protobuf.GeneratedMessage.Builder<StringRules.Builder>
-
getDefaultInstanceForType
public StringRules getDefaultInstanceForType()
- Specified by:
getDefaultInstanceForTypein interfacecom.google.protobuf.MessageLiteOrBuilder- Specified by:
getDefaultInstanceForTypein interfacecom.google.protobuf.MessageOrBuilder
-
build
public StringRules build()
- Specified by:
buildin interfacecom.google.protobuf.Message.Builder- Specified by:
buildin interfacecom.google.protobuf.MessageLite.Builder
-
buildPartial
public StringRules buildPartial()
- Specified by:
buildPartialin interfacecom.google.protobuf.Message.Builder- Specified by:
buildPartialin interfacecom.google.protobuf.MessageLite.Builder
-
mergeFrom
public StringRules.Builder mergeFrom(com.google.protobuf.Message other)
- Specified by:
mergeFromin interfacecom.google.protobuf.Message.Builder- Overrides:
mergeFromin classcom.google.protobuf.AbstractMessage.Builder<StringRules.Builder>
-
mergeFrom
public StringRules.Builder mergeFrom(StringRules other)
-
isInitialized
public final boolean isInitialized()
- Specified by:
isInitializedin interfacecom.google.protobuf.MessageLiteOrBuilder- Overrides:
isInitializedin classcom.google.protobuf.GeneratedMessage.Builder<StringRules.Builder>
-
mergeFrom
public StringRules.Builder mergeFrom(com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException
- Specified by:
mergeFromin interfacecom.google.protobuf.Message.Builder- Specified by:
mergeFromin interfacecom.google.protobuf.MessageLite.Builder- Overrides:
mergeFromin classcom.google.protobuf.AbstractMessage.Builder<StringRules.Builder>- Throws:
java.io.IOException
-
getWellKnownCase
public StringRules.WellKnownCase getWellKnownCase()
- Specified by:
getWellKnownCasein interfaceStringRulesOrBuilder
-
clearWellKnown
public StringRules.Builder clearWellKnown()
-
hasConst
public boolean hasConst()
`const` requires the field value to exactly match the specified value. If the field value doesn't match, an error message is generated. ```proto message MyString { // value must equal `hello` string value = 1 [(buf.validate.field).string.const = "hello"]; } ```optional string const = 1 [(.buf.validate.priv.field) = { ... }- Specified by:
hasConstin interfaceStringRulesOrBuilder- Returns:
- Whether the const field is set.
-
getConst
public java.lang.String getConst()
`const` requires the field value to exactly match the specified value. If the field value doesn't match, an error message is generated. ```proto message MyString { // value must equal `hello` string value = 1 [(buf.validate.field).string.const = "hello"]; } ```optional string const = 1 [(.buf.validate.priv.field) = { ... }- Specified by:
getConstin interfaceStringRulesOrBuilder- Returns:
- The const.
-
getConstBytes
public com.google.protobuf.ByteString getConstBytes()
`const` requires the field value to exactly match the specified value. If the field value doesn't match, an error message is generated. ```proto message MyString { // value must equal `hello` string value = 1 [(buf.validate.field).string.const = "hello"]; } ```optional string const = 1 [(.buf.validate.priv.field) = { ... }- Specified by:
getConstBytesin interfaceStringRulesOrBuilder- Returns:
- The bytes for const.
-
setConst
public StringRules.Builder setConst(java.lang.String value)
`const` requires the field value to exactly match the specified value. If the field value doesn't match, an error message is generated. ```proto message MyString { // value must equal `hello` string value = 1 [(buf.validate.field).string.const = "hello"]; } ```optional string const = 1 [(.buf.validate.priv.field) = { ... }- Parameters:
value- The const to set.- Returns:
- This builder for chaining.
-
clearConst
public StringRules.Builder clearConst()
`const` requires the field value to exactly match the specified value. If the field value doesn't match, an error message is generated. ```proto message MyString { // value must equal `hello` string value = 1 [(buf.validate.field).string.const = "hello"]; } ```optional string const = 1 [(.buf.validate.priv.field) = { ... }- Returns:
- This builder for chaining.
-
setConstBytes
public StringRules.Builder setConstBytes(com.google.protobuf.ByteString value)
`const` requires the field value to exactly match the specified value. If the field value doesn't match, an error message is generated. ```proto message MyString { // value must equal `hello` string value = 1 [(buf.validate.field).string.const = "hello"]; } ```optional string const = 1 [(.buf.validate.priv.field) = { ... }- Parameters:
value- The bytes for const to set.- Returns:
- This builder for chaining.
-
hasLen
public boolean hasLen()
`len` dictates that the field value must have the specified number of characters (Unicode code points), which may differ from the number of bytes in the string. If the field value does not meet the specified length, an error message will be generated. ```proto message MyString { // value length must be 5 characters string value = 1 [(buf.validate.field).string.len = 5]; } ```optional uint64 len = 19 [(.buf.validate.priv.field) = { ... }- Specified by:
hasLenin interfaceStringRulesOrBuilder- Returns:
- Whether the len field is set.
-
getLen
public long getLen()
`len` dictates that the field value must have the specified number of characters (Unicode code points), which may differ from the number of bytes in the string. If the field value does not meet the specified length, an error message will be generated. ```proto message MyString { // value length must be 5 characters string value = 1 [(buf.validate.field).string.len = 5]; } ```optional uint64 len = 19 [(.buf.validate.priv.field) = { ... }- Specified by:
getLenin interfaceStringRulesOrBuilder- Returns:
- The len.
-
setLen
public StringRules.Builder setLen(long value)
`len` dictates that the field value must have the specified number of characters (Unicode code points), which may differ from the number of bytes in the string. If the field value does not meet the specified length, an error message will be generated. ```proto message MyString { // value length must be 5 characters string value = 1 [(buf.validate.field).string.len = 5]; } ```optional uint64 len = 19 [(.buf.validate.priv.field) = { ... }- Parameters:
value- The len to set.- Returns:
- This builder for chaining.
-
clearLen
public StringRules.Builder clearLen()
`len` dictates that the field value must have the specified number of characters (Unicode code points), which may differ from the number of bytes in the string. If the field value does not meet the specified length, an error message will be generated. ```proto message MyString { // value length must be 5 characters string value = 1 [(buf.validate.field).string.len = 5]; } ```optional uint64 len = 19 [(.buf.validate.priv.field) = { ... }- Returns:
- This builder for chaining.
-
hasMinLen
public boolean hasMinLen()
`min_len` specifies that the field value must have at least the specified number of characters (Unicode code points), which may differ from the number of bytes in the string. If the field value contains fewer characters, an error message will be generated. ```proto message MyString { // value length must be at least 3 characters string value = 1 [(buf.validate.field).string.min_len = 3]; } ```optional uint64 min_len = 2 [(.buf.validate.priv.field) = { ... }- Specified by:
hasMinLenin interfaceStringRulesOrBuilder- Returns:
- Whether the minLen field is set.
-
getMinLen
public long getMinLen()
`min_len` specifies that the field value must have at least the specified number of characters (Unicode code points), which may differ from the number of bytes in the string. If the field value contains fewer characters, an error message will be generated. ```proto message MyString { // value length must be at least 3 characters string value = 1 [(buf.validate.field).string.min_len = 3]; } ```optional uint64 min_len = 2 [(.buf.validate.priv.field) = { ... }- Specified by:
getMinLenin interfaceStringRulesOrBuilder- Returns:
- The minLen.
-
setMinLen
public StringRules.Builder setMinLen(long value)
`min_len` specifies that the field value must have at least the specified number of characters (Unicode code points), which may differ from the number of bytes in the string. If the field value contains fewer characters, an error message will be generated. ```proto message MyString { // value length must be at least 3 characters string value = 1 [(buf.validate.field).string.min_len = 3]; } ```optional uint64 min_len = 2 [(.buf.validate.priv.field) = { ... }- Parameters:
value- The minLen to set.- Returns:
- This builder for chaining.
-
clearMinLen
public StringRules.Builder clearMinLen()
`min_len` specifies that the field value must have at least the specified number of characters (Unicode code points), which may differ from the number of bytes in the string. If the field value contains fewer characters, an error message will be generated. ```proto message MyString { // value length must be at least 3 characters string value = 1 [(buf.validate.field).string.min_len = 3]; } ```optional uint64 min_len = 2 [(.buf.validate.priv.field) = { ... }- Returns:
- This builder for chaining.
-
hasMaxLen
public boolean hasMaxLen()
`max_len` specifies that the field value must have no more than the specified number of characters (Unicode code points), which may differ from the number of bytes in the string. If the field value contains more characters, an error message will be generated. ```proto message MyString { // value length must be at most 10 characters string value = 1 [(buf.validate.field).string.max_len = 10]; } ```optional uint64 max_len = 3 [(.buf.validate.priv.field) = { ... }- Specified by:
hasMaxLenin interfaceStringRulesOrBuilder- Returns:
- Whether the maxLen field is set.
-
getMaxLen
public long getMaxLen()
`max_len` specifies that the field value must have no more than the specified number of characters (Unicode code points), which may differ from the number of bytes in the string. If the field value contains more characters, an error message will be generated. ```proto message MyString { // value length must be at most 10 characters string value = 1 [(buf.validate.field).string.max_len = 10]; } ```optional uint64 max_len = 3 [(.buf.validate.priv.field) = { ... }- Specified by:
getMaxLenin interfaceStringRulesOrBuilder- Returns:
- The maxLen.
-
setMaxLen
public StringRules.Builder setMaxLen(long value)
`max_len` specifies that the field value must have no more than the specified number of characters (Unicode code points), which may differ from the number of bytes in the string. If the field value contains more characters, an error message will be generated. ```proto message MyString { // value length must be at most 10 characters string value = 1 [(buf.validate.field).string.max_len = 10]; } ```optional uint64 max_len = 3 [(.buf.validate.priv.field) = { ... }- Parameters:
value- The maxLen to set.- Returns:
- This builder for chaining.
-
clearMaxLen
public StringRules.Builder clearMaxLen()
`max_len` specifies that the field value must have no more than the specified number of characters (Unicode code points), which may differ from the number of bytes in the string. If the field value contains more characters, an error message will be generated. ```proto message MyString { // value length must be at most 10 characters string value = 1 [(buf.validate.field).string.max_len = 10]; } ```optional uint64 max_len = 3 [(.buf.validate.priv.field) = { ... }- Returns:
- This builder for chaining.
-
hasLenBytes
public boolean hasLenBytes()
`len_bytes` dictates that the field value must have the specified number of bytes. If the field value does not match the specified length in bytes, an error message will be generated. ```proto message MyString { // value length must be 6 bytes string value = 1 [(buf.validate.field).string.len_bytes = 6]; } ```optional uint64 len_bytes = 20 [(.buf.validate.priv.field) = { ... }- Specified by:
hasLenBytesin interfaceStringRulesOrBuilder- Returns:
- Whether the lenBytes field is set.
-
getLenBytes
public long getLenBytes()
`len_bytes` dictates that the field value must have the specified number of bytes. If the field value does not match the specified length in bytes, an error message will be generated. ```proto message MyString { // value length must be 6 bytes string value = 1 [(buf.validate.field).string.len_bytes = 6]; } ```optional uint64 len_bytes = 20 [(.buf.validate.priv.field) = { ... }- Specified by:
getLenBytesin interfaceStringRulesOrBuilder- Returns:
- The lenBytes.
-
setLenBytes
public StringRules.Builder setLenBytes(long value)
`len_bytes` dictates that the field value must have the specified number of bytes. If the field value does not match the specified length in bytes, an error message will be generated. ```proto message MyString { // value length must be 6 bytes string value = 1 [(buf.validate.field).string.len_bytes = 6]; } ```optional uint64 len_bytes = 20 [(.buf.validate.priv.field) = { ... }- Parameters:
value- The lenBytes to set.- Returns:
- This builder for chaining.
-
clearLenBytes
public StringRules.Builder clearLenBytes()
`len_bytes` dictates that the field value must have the specified number of bytes. If the field value does not match the specified length in bytes, an error message will be generated. ```proto message MyString { // value length must be 6 bytes string value = 1 [(buf.validate.field).string.len_bytes = 6]; } ```optional uint64 len_bytes = 20 [(.buf.validate.priv.field) = { ... }- Returns:
- This builder for chaining.
-
hasMinBytes
public boolean hasMinBytes()
`min_bytes` specifies that the field value must have at least the specified number of bytes. If the field value contains fewer bytes, an error message will be generated. ```proto message MyString { // value length must be at least 4 bytes string value = 1 [(buf.validate.field).string.min_bytes = 4]; } ```optional uint64 min_bytes = 4 [(.buf.validate.priv.field) = { ... }- Specified by:
hasMinBytesin interfaceStringRulesOrBuilder- Returns:
- Whether the minBytes field is set.
-
getMinBytes
public long getMinBytes()
`min_bytes` specifies that the field value must have at least the specified number of bytes. If the field value contains fewer bytes, an error message will be generated. ```proto message MyString { // value length must be at least 4 bytes string value = 1 [(buf.validate.field).string.min_bytes = 4]; } ```optional uint64 min_bytes = 4 [(.buf.validate.priv.field) = { ... }- Specified by:
getMinBytesin interfaceStringRulesOrBuilder- Returns:
- The minBytes.
-
setMinBytes
public StringRules.Builder setMinBytes(long value)
`min_bytes` specifies that the field value must have at least the specified number of bytes. If the field value contains fewer bytes, an error message will be generated. ```proto message MyString { // value length must be at least 4 bytes string value = 1 [(buf.validate.field).string.min_bytes = 4]; } ```optional uint64 min_bytes = 4 [(.buf.validate.priv.field) = { ... }- Parameters:
value- The minBytes to set.- Returns:
- This builder for chaining.
-
clearMinBytes
public StringRules.Builder clearMinBytes()
`min_bytes` specifies that the field value must have at least the specified number of bytes. If the field value contains fewer bytes, an error message will be generated. ```proto message MyString { // value length must be at least 4 bytes string value = 1 [(buf.validate.field).string.min_bytes = 4]; } ```optional uint64 min_bytes = 4 [(.buf.validate.priv.field) = { ... }- Returns:
- This builder for chaining.
-
hasMaxBytes
public boolean hasMaxBytes()
`max_bytes` specifies that the field value must have no more than the specified number of bytes. If the field value contains more bytes, an error message will be generated. ```proto message MyString { // value length must be at most 8 bytes string value = 1 [(buf.validate.field).string.max_bytes = 8]; } ```optional uint64 max_bytes = 5 [(.buf.validate.priv.field) = { ... }- Specified by:
hasMaxBytesin interfaceStringRulesOrBuilder- Returns:
- Whether the maxBytes field is set.
-
getMaxBytes
public long getMaxBytes()
`max_bytes` specifies that the field value must have no more than the specified number of bytes. If the field value contains more bytes, an error message will be generated. ```proto message MyString { // value length must be at most 8 bytes string value = 1 [(buf.validate.field).string.max_bytes = 8]; } ```optional uint64 max_bytes = 5 [(.buf.validate.priv.field) = { ... }- Specified by:
getMaxBytesin interfaceStringRulesOrBuilder- Returns:
- The maxBytes.
-
setMaxBytes
public StringRules.Builder setMaxBytes(long value)
`max_bytes` specifies that the field value must have no more than the specified number of bytes. If the field value contains more bytes, an error message will be generated. ```proto message MyString { // value length must be at most 8 bytes string value = 1 [(buf.validate.field).string.max_bytes = 8]; } ```optional uint64 max_bytes = 5 [(.buf.validate.priv.field) = { ... }- Parameters:
value- The maxBytes to set.- Returns:
- This builder for chaining.
-
clearMaxBytes
public StringRules.Builder clearMaxBytes()
`max_bytes` specifies that the field value must have no more than the specified number of bytes. If the field value contains more bytes, an error message will be generated. ```proto message MyString { // value length must be at most 8 bytes string value = 1 [(buf.validate.field).string.max_bytes = 8]; } ```optional uint64 max_bytes = 5 [(.buf.validate.priv.field) = { ... }- Returns:
- This builder for chaining.
-
hasPattern
public boolean hasPattern()
`pattern` specifies that the field value must match the specified regular expression (RE2 syntax), with the expression provided without any delimiters. If the field value doesn't match the regular expression, an error message will be generated. ```proto message MyString { // value does not match regex pattern `^[a-zA-Z]//$` string value = 1 [(buf.validate.field).string.pattern = "^[a-zA-Z]//$"]; } ```optional string pattern = 6 [(.buf.validate.priv.field) = { ... }- Specified by:
hasPatternin interfaceStringRulesOrBuilder- Returns:
- Whether the pattern field is set.
-
getPattern
public java.lang.String getPattern()
`pattern` specifies that the field value must match the specified regular expression (RE2 syntax), with the expression provided without any delimiters. If the field value doesn't match the regular expression, an error message will be generated. ```proto message MyString { // value does not match regex pattern `^[a-zA-Z]//$` string value = 1 [(buf.validate.field).string.pattern = "^[a-zA-Z]//$"]; } ```optional string pattern = 6 [(.buf.validate.priv.field) = { ... }- Specified by:
getPatternin interfaceStringRulesOrBuilder- Returns:
- The pattern.
-
getPatternBytes
public com.google.protobuf.ByteString getPatternBytes()
`pattern` specifies that the field value must match the specified regular expression (RE2 syntax), with the expression provided without any delimiters. If the field value doesn't match the regular expression, an error message will be generated. ```proto message MyString { // value does not match regex pattern `^[a-zA-Z]//$` string value = 1 [(buf.validate.field).string.pattern = "^[a-zA-Z]//$"]; } ```optional string pattern = 6 [(.buf.validate.priv.field) = { ... }- Specified by:
getPatternBytesin interfaceStringRulesOrBuilder- Returns:
- The bytes for pattern.
-
setPattern
public StringRules.Builder setPattern(java.lang.String value)
`pattern` specifies that the field value must match the specified regular expression (RE2 syntax), with the expression provided without any delimiters. If the field value doesn't match the regular expression, an error message will be generated. ```proto message MyString { // value does not match regex pattern `^[a-zA-Z]//$` string value = 1 [(buf.validate.field).string.pattern = "^[a-zA-Z]//$"]; } ```optional string pattern = 6 [(.buf.validate.priv.field) = { ... }- Parameters:
value- The pattern to set.- Returns:
- This builder for chaining.
-
clearPattern
public StringRules.Builder clearPattern()
`pattern` specifies that the field value must match the specified regular expression (RE2 syntax), with the expression provided without any delimiters. If the field value doesn't match the regular expression, an error message will be generated. ```proto message MyString { // value does not match regex pattern `^[a-zA-Z]//$` string value = 1 [(buf.validate.field).string.pattern = "^[a-zA-Z]//$"]; } ```optional string pattern = 6 [(.buf.validate.priv.field) = { ... }- Returns:
- This builder for chaining.
-
setPatternBytes
public StringRules.Builder setPatternBytes(com.google.protobuf.ByteString value)
`pattern` specifies that the field value must match the specified regular expression (RE2 syntax), with the expression provided without any delimiters. If the field value doesn't match the regular expression, an error message will be generated. ```proto message MyString { // value does not match regex pattern `^[a-zA-Z]//$` string value = 1 [(buf.validate.field).string.pattern = "^[a-zA-Z]//$"]; } ```optional string pattern = 6 [(.buf.validate.priv.field) = { ... }- Parameters:
value- The bytes for pattern to set.- Returns:
- This builder for chaining.
-
hasPrefix
public boolean hasPrefix()
`prefix` specifies that the field value must have the specified substring at the beginning of the string. If the field value doesn't start with the specified prefix, an error message will be generated. ```proto message MyString { // value does not have prefix `pre` string value = 1 [(buf.validate.field).string.prefix = "pre"]; } ```optional string prefix = 7 [(.buf.validate.priv.field) = { ... }- Specified by:
hasPrefixin interfaceStringRulesOrBuilder- Returns:
- Whether the prefix field is set.
-
getPrefix
public java.lang.String getPrefix()
`prefix` specifies that the field value must have the specified substring at the beginning of the string. If the field value doesn't start with the specified prefix, an error message will be generated. ```proto message MyString { // value does not have prefix `pre` string value = 1 [(buf.validate.field).string.prefix = "pre"]; } ```optional string prefix = 7 [(.buf.validate.priv.field) = { ... }- Specified by:
getPrefixin interfaceStringRulesOrBuilder- Returns:
- The prefix.
-
getPrefixBytes
public com.google.protobuf.ByteString getPrefixBytes()
`prefix` specifies that the field value must have the specified substring at the beginning of the string. If the field value doesn't start with the specified prefix, an error message will be generated. ```proto message MyString { // value does not have prefix `pre` string value = 1 [(buf.validate.field).string.prefix = "pre"]; } ```optional string prefix = 7 [(.buf.validate.priv.field) = { ... }- Specified by:
getPrefixBytesin interfaceStringRulesOrBuilder- Returns:
- The bytes for prefix.
-
setPrefix
public StringRules.Builder setPrefix(java.lang.String value)
`prefix` specifies that the field value must have the specified substring at the beginning of the string. If the field value doesn't start with the specified prefix, an error message will be generated. ```proto message MyString { // value does not have prefix `pre` string value = 1 [(buf.validate.field).string.prefix = "pre"]; } ```optional string prefix = 7 [(.buf.validate.priv.field) = { ... }- Parameters:
value- The prefix to set.- Returns:
- This builder for chaining.
-
clearPrefix
public StringRules.Builder clearPrefix()
`prefix` specifies that the field value must have the specified substring at the beginning of the string. If the field value doesn't start with the specified prefix, an error message will be generated. ```proto message MyString { // value does not have prefix `pre` string value = 1 [(buf.validate.field).string.prefix = "pre"]; } ```optional string prefix = 7 [(.buf.validate.priv.field) = { ... }- Returns:
- This builder for chaining.
-
setPrefixBytes
public StringRules.Builder setPrefixBytes(com.google.protobuf.ByteString value)
`prefix` specifies that the field value must have the specified substring at the beginning of the string. If the field value doesn't start with the specified prefix, an error message will be generated. ```proto message MyString { // value does not have prefix `pre` string value = 1 [(buf.validate.field).string.prefix = "pre"]; } ```optional string prefix = 7 [(.buf.validate.priv.field) = { ... }- Parameters:
value- The bytes for prefix to set.- Returns:
- This builder for chaining.
-
hasSuffix
public boolean hasSuffix()
`suffix` specifies that the field value must have the specified substring at the end of the string. If the field value doesn't end with the specified suffix, an error message will be generated. ```proto message MyString { // value does not have suffix `post` string value = 1 [(buf.validate.field).string.suffix = "post"]; } ```optional string suffix = 8 [(.buf.validate.priv.field) = { ... }- Specified by:
hasSuffixin interfaceStringRulesOrBuilder- Returns:
- Whether the suffix field is set.
-
getSuffix
public java.lang.String getSuffix()
`suffix` specifies that the field value must have the specified substring at the end of the string. If the field value doesn't end with the specified suffix, an error message will be generated. ```proto message MyString { // value does not have suffix `post` string value = 1 [(buf.validate.field).string.suffix = "post"]; } ```optional string suffix = 8 [(.buf.validate.priv.field) = { ... }- Specified by:
getSuffixin interfaceStringRulesOrBuilder- Returns:
- The suffix.
-
getSuffixBytes
public com.google.protobuf.ByteString getSuffixBytes()
`suffix` specifies that the field value must have the specified substring at the end of the string. If the field value doesn't end with the specified suffix, an error message will be generated. ```proto message MyString { // value does not have suffix `post` string value = 1 [(buf.validate.field).string.suffix = "post"]; } ```optional string suffix = 8 [(.buf.validate.priv.field) = { ... }- Specified by:
getSuffixBytesin interfaceStringRulesOrBuilder- Returns:
- The bytes for suffix.
-
setSuffix
public StringRules.Builder setSuffix(java.lang.String value)
`suffix` specifies that the field value must have the specified substring at the end of the string. If the field value doesn't end with the specified suffix, an error message will be generated. ```proto message MyString { // value does not have suffix `post` string value = 1 [(buf.validate.field).string.suffix = "post"]; } ```optional string suffix = 8 [(.buf.validate.priv.field) = { ... }- Parameters:
value- The suffix to set.- Returns:
- This builder for chaining.
-
clearSuffix
public StringRules.Builder clearSuffix()
`suffix` specifies that the field value must have the specified substring at the end of the string. If the field value doesn't end with the specified suffix, an error message will be generated. ```proto message MyString { // value does not have suffix `post` string value = 1 [(buf.validate.field).string.suffix = "post"]; } ```optional string suffix = 8 [(.buf.validate.priv.field) = { ... }- Returns:
- This builder for chaining.
-
setSuffixBytes
public StringRules.Builder setSuffixBytes(com.google.protobuf.ByteString value)
`suffix` specifies that the field value must have the specified substring at the end of the string. If the field value doesn't end with the specified suffix, an error message will be generated. ```proto message MyString { // value does not have suffix `post` string value = 1 [(buf.validate.field).string.suffix = "post"]; } ```optional string suffix = 8 [(.buf.validate.priv.field) = { ... }- Parameters:
value- The bytes for suffix to set.- Returns:
- This builder for chaining.
-
hasContains
public boolean hasContains()
`contains` specifies that the field value must have the specified substring anywhere in the string. If the field value doesn't contain the specified substring, an error message will be generated. ```proto message MyString { // value does not contain substring `inside`. string value = 1 [(buf.validate.field).string.contains = "inside"]; } ```optional string contains = 9 [(.buf.validate.priv.field) = { ... }- Specified by:
hasContainsin interfaceStringRulesOrBuilder- Returns:
- Whether the contains field is set.
-
getContains
public java.lang.String getContains()
`contains` specifies that the field value must have the specified substring anywhere in the string. If the field value doesn't contain the specified substring, an error message will be generated. ```proto message MyString { // value does not contain substring `inside`. string value = 1 [(buf.validate.field).string.contains = "inside"]; } ```optional string contains = 9 [(.buf.validate.priv.field) = { ... }- Specified by:
getContainsin interfaceStringRulesOrBuilder- Returns:
- The contains.
-
getContainsBytes
public com.google.protobuf.ByteString getContainsBytes()
`contains` specifies that the field value must have the specified substring anywhere in the string. If the field value doesn't contain the specified substring, an error message will be generated. ```proto message MyString { // value does not contain substring `inside`. string value = 1 [(buf.validate.field).string.contains = "inside"]; } ```optional string contains = 9 [(.buf.validate.priv.field) = { ... }- Specified by:
getContainsBytesin interfaceStringRulesOrBuilder- Returns:
- The bytes for contains.
-
setContains
public StringRules.Builder setContains(java.lang.String value)
`contains` specifies that the field value must have the specified substring anywhere in the string. If the field value doesn't contain the specified substring, an error message will be generated. ```proto message MyString { // value does not contain substring `inside`. string value = 1 [(buf.validate.field).string.contains = "inside"]; } ```optional string contains = 9 [(.buf.validate.priv.field) = { ... }- Parameters:
value- The contains to set.- Returns:
- This builder for chaining.
-
clearContains
public StringRules.Builder clearContains()
`contains` specifies that the field value must have the specified substring anywhere in the string. If the field value doesn't contain the specified substring, an error message will be generated. ```proto message MyString { // value does not contain substring `inside`. string value = 1 [(buf.validate.field).string.contains = "inside"]; } ```optional string contains = 9 [(.buf.validate.priv.field) = { ... }- Returns:
- This builder for chaining.
-
setContainsBytes
public StringRules.Builder setContainsBytes(com.google.protobuf.ByteString value)
`contains` specifies that the field value must have the specified substring anywhere in the string. If the field value doesn't contain the specified substring, an error message will be generated. ```proto message MyString { // value does not contain substring `inside`. string value = 1 [(buf.validate.field).string.contains = "inside"]; } ```optional string contains = 9 [(.buf.validate.priv.field) = { ... }- Parameters:
value- The bytes for contains to set.- Returns:
- This builder for chaining.
-
hasNotContains
public boolean hasNotContains()
`not_contains` specifies that the field value must not have the specified substring anywhere in the string. If the field value contains the specified substring, an error message will be generated. ```proto message MyString { // value contains substring `inside`. string value = 1 [(buf.validate.field).string.not_contains = "inside"]; } ```optional string not_contains = 23 [(.buf.validate.priv.field) = { ... }- Specified by:
hasNotContainsin interfaceStringRulesOrBuilder- Returns:
- Whether the notContains field is set.
-
getNotContains
public java.lang.String getNotContains()
`not_contains` specifies that the field value must not have the specified substring anywhere in the string. If the field value contains the specified substring, an error message will be generated. ```proto message MyString { // value contains substring `inside`. string value = 1 [(buf.validate.field).string.not_contains = "inside"]; } ```optional string not_contains = 23 [(.buf.validate.priv.field) = { ... }- Specified by:
getNotContainsin interfaceStringRulesOrBuilder- Returns:
- The notContains.
-
getNotContainsBytes
public com.google.protobuf.ByteString getNotContainsBytes()
`not_contains` specifies that the field value must not have the specified substring anywhere in the string. If the field value contains the specified substring, an error message will be generated. ```proto message MyString { // value contains substring `inside`. string value = 1 [(buf.validate.field).string.not_contains = "inside"]; } ```optional string not_contains = 23 [(.buf.validate.priv.field) = { ... }- Specified by:
getNotContainsBytesin interfaceStringRulesOrBuilder- Returns:
- The bytes for notContains.
-
setNotContains
public StringRules.Builder setNotContains(java.lang.String value)
`not_contains` specifies that the field value must not have the specified substring anywhere in the string. If the field value contains the specified substring, an error message will be generated. ```proto message MyString { // value contains substring `inside`. string value = 1 [(buf.validate.field).string.not_contains = "inside"]; } ```optional string not_contains = 23 [(.buf.validate.priv.field) = { ... }- Parameters:
value- The notContains to set.- Returns:
- This builder for chaining.
-
clearNotContains
public StringRules.Builder clearNotContains()
`not_contains` specifies that the field value must not have the specified substring anywhere in the string. If the field value contains the specified substring, an error message will be generated. ```proto message MyString { // value contains substring `inside`. string value = 1 [(buf.validate.field).string.not_contains = "inside"]; } ```optional string not_contains = 23 [(.buf.validate.priv.field) = { ... }- Returns:
- This builder for chaining.
-
setNotContainsBytes
public StringRules.Builder setNotContainsBytes(com.google.protobuf.ByteString value)
`not_contains` specifies that the field value must not have the specified substring anywhere in the string. If the field value contains the specified substring, an error message will be generated. ```proto message MyString { // value contains substring `inside`. string value = 1 [(buf.validate.field).string.not_contains = "inside"]; } ```optional string not_contains = 23 [(.buf.validate.priv.field) = { ... }- Parameters:
value- The bytes for notContains to set.- Returns:
- This builder for chaining.
-
getInList
public com.google.protobuf.ProtocolStringList getInList()
`in` specifies that the field value must be equal to one of the specified values. If the field value isn't one of the specified values, an error message will be generated. ```proto message MyString { // value must be in list ["apple", "banana"] repeated string value = 1 [(buf.validate.field).string.in = "apple", (buf.validate.field).string.in = "banana"]; } ```repeated string in = 10 [(.buf.validate.priv.field) = { ... }- Specified by:
getInListin interfaceStringRulesOrBuilder- Returns:
- A list containing the in.
-
getInCount
public int getInCount()
`in` specifies that the field value must be equal to one of the specified values. If the field value isn't one of the specified values, an error message will be generated. ```proto message MyString { // value must be in list ["apple", "banana"] repeated string value = 1 [(buf.validate.field).string.in = "apple", (buf.validate.field).string.in = "banana"]; } ```repeated string in = 10 [(.buf.validate.priv.field) = { ... }- Specified by:
getInCountin interfaceStringRulesOrBuilder- Returns:
- The count of in.
-
getIn
public java.lang.String getIn(int index)
`in` specifies that the field value must be equal to one of the specified values. If the field value isn't one of the specified values, an error message will be generated. ```proto message MyString { // value must be in list ["apple", "banana"] repeated string value = 1 [(buf.validate.field).string.in = "apple", (buf.validate.field).string.in = "banana"]; } ```repeated string in = 10 [(.buf.validate.priv.field) = { ... }- Specified by:
getInin interfaceStringRulesOrBuilder- Parameters:
index- The index of the element to return.- Returns:
- The in at the given index.
-
getInBytes
public com.google.protobuf.ByteString getInBytes(int index)
`in` specifies that the field value must be equal to one of the specified values. If the field value isn't one of the specified values, an error message will be generated. ```proto message MyString { // value must be in list ["apple", "banana"] repeated string value = 1 [(buf.validate.field).string.in = "apple", (buf.validate.field).string.in = "banana"]; } ```repeated string in = 10 [(.buf.validate.priv.field) = { ... }- Specified by:
getInBytesin interfaceStringRulesOrBuilder- Parameters:
index- The index of the value to return.- Returns:
- The bytes of the in at the given index.
-
setIn
public StringRules.Builder setIn(int index, java.lang.String value)
`in` specifies that the field value must be equal to one of the specified values. If the field value isn't one of the specified values, an error message will be generated. ```proto message MyString { // value must be in list ["apple", "banana"] repeated string value = 1 [(buf.validate.field).string.in = "apple", (buf.validate.field).string.in = "banana"]; } ```repeated string in = 10 [(.buf.validate.priv.field) = { ... }- Parameters:
index- The index to set the value at.value- The in to set.- Returns:
- This builder for chaining.
-
addIn
public StringRules.Builder addIn(java.lang.String value)
`in` specifies that the field value must be equal to one of the specified values. If the field value isn't one of the specified values, an error message will be generated. ```proto message MyString { // value must be in list ["apple", "banana"] repeated string value = 1 [(buf.validate.field).string.in = "apple", (buf.validate.field).string.in = "banana"]; } ```repeated string in = 10 [(.buf.validate.priv.field) = { ... }- Parameters:
value- The in to add.- Returns:
- This builder for chaining.
-
addAllIn
public StringRules.Builder addAllIn(java.lang.Iterable<java.lang.String> values)
`in` specifies that the field value must be equal to one of the specified values. If the field value isn't one of the specified values, an error message will be generated. ```proto message MyString { // value must be in list ["apple", "banana"] repeated string value = 1 [(buf.validate.field).string.in = "apple", (buf.validate.field).string.in = "banana"]; } ```repeated string in = 10 [(.buf.validate.priv.field) = { ... }- Parameters:
values- The in to add.- Returns:
- This builder for chaining.
-
clearIn
public StringRules.Builder clearIn()
`in` specifies that the field value must be equal to one of the specified values. If the field value isn't one of the specified values, an error message will be generated. ```proto message MyString { // value must be in list ["apple", "banana"] repeated string value = 1 [(buf.validate.field).string.in = "apple", (buf.validate.field).string.in = "banana"]; } ```repeated string in = 10 [(.buf.validate.priv.field) = { ... }- Returns:
- This builder for chaining.
-
addInBytes
public StringRules.Builder addInBytes(com.google.protobuf.ByteString value)
`in` specifies that the field value must be equal to one of the specified values. If the field value isn't one of the specified values, an error message will be generated. ```proto message MyString { // value must be in list ["apple", "banana"] repeated string value = 1 [(buf.validate.field).string.in = "apple", (buf.validate.field).string.in = "banana"]; } ```repeated string in = 10 [(.buf.validate.priv.field) = { ... }- Parameters:
value- The bytes of the in to add.- Returns:
- This builder for chaining.
-
getNotInList
public com.google.protobuf.ProtocolStringList getNotInList()
`not_in` specifies that the field value cannot be equal to any of the specified values. If the field value is one of the specified values, an error message will be generated. ```proto message MyString { // value must not be in list ["orange", "grape"] repeated string value = 1 [(buf.validate.field).string.not_in = "orange", (buf.validate.field).string.not_in = "grape"]; } ```repeated string not_in = 11 [(.buf.validate.priv.field) = { ... }- Specified by:
getNotInListin interfaceStringRulesOrBuilder- Returns:
- A list containing the notIn.
-
getNotInCount
public int getNotInCount()
`not_in` specifies that the field value cannot be equal to any of the specified values. If the field value is one of the specified values, an error message will be generated. ```proto message MyString { // value must not be in list ["orange", "grape"] repeated string value = 1 [(buf.validate.field).string.not_in = "orange", (buf.validate.field).string.not_in = "grape"]; } ```repeated string not_in = 11 [(.buf.validate.priv.field) = { ... }- Specified by:
getNotInCountin interfaceStringRulesOrBuilder- Returns:
- The count of notIn.
-
getNotIn
public java.lang.String getNotIn(int index)
`not_in` specifies that the field value cannot be equal to any of the specified values. If the field value is one of the specified values, an error message will be generated. ```proto message MyString { // value must not be in list ["orange", "grape"] repeated string value = 1 [(buf.validate.field).string.not_in = "orange", (buf.validate.field).string.not_in = "grape"]; } ```repeated string not_in = 11 [(.buf.validate.priv.field) = { ... }- Specified by:
getNotInin interfaceStringRulesOrBuilder- Parameters:
index- The index of the element to return.- Returns:
- The notIn at the given index.
-
getNotInBytes
public com.google.protobuf.ByteString getNotInBytes(int index)
`not_in` specifies that the field value cannot be equal to any of the specified values. If the field value is one of the specified values, an error message will be generated. ```proto message MyString { // value must not be in list ["orange", "grape"] repeated string value = 1 [(buf.validate.field).string.not_in = "orange", (buf.validate.field).string.not_in = "grape"]; } ```repeated string not_in = 11 [(.buf.validate.priv.field) = { ... }- Specified by:
getNotInBytesin interfaceStringRulesOrBuilder- Parameters:
index- The index of the value to return.- Returns:
- The bytes of the notIn at the given index.
-
setNotIn
public StringRules.Builder setNotIn(int index, java.lang.String value)
`not_in` specifies that the field value cannot be equal to any of the specified values. If the field value is one of the specified values, an error message will be generated. ```proto message MyString { // value must not be in list ["orange", "grape"] repeated string value = 1 [(buf.validate.field).string.not_in = "orange", (buf.validate.field).string.not_in = "grape"]; } ```repeated string not_in = 11 [(.buf.validate.priv.field) = { ... }- Parameters:
index- The index to set the value at.value- The notIn to set.- Returns:
- This builder for chaining.
-
addNotIn
public StringRules.Builder addNotIn(java.lang.String value)
`not_in` specifies that the field value cannot be equal to any of the specified values. If the field value is one of the specified values, an error message will be generated. ```proto message MyString { // value must not be in list ["orange", "grape"] repeated string value = 1 [(buf.validate.field).string.not_in = "orange", (buf.validate.field).string.not_in = "grape"]; } ```repeated string not_in = 11 [(.buf.validate.priv.field) = { ... }- Parameters:
value- The notIn to add.- Returns:
- This builder for chaining.
-
addAllNotIn
public StringRules.Builder addAllNotIn(java.lang.Iterable<java.lang.String> values)
`not_in` specifies that the field value cannot be equal to any of the specified values. If the field value is one of the specified values, an error message will be generated. ```proto message MyString { // value must not be in list ["orange", "grape"] repeated string value = 1 [(buf.validate.field).string.not_in = "orange", (buf.validate.field).string.not_in = "grape"]; } ```repeated string not_in = 11 [(.buf.validate.priv.field) = { ... }- Parameters:
values- The notIn to add.- Returns:
- This builder for chaining.
-
clearNotIn
public StringRules.Builder clearNotIn()
`not_in` specifies that the field value cannot be equal to any of the specified values. If the field value is one of the specified values, an error message will be generated. ```proto message MyString { // value must not be in list ["orange", "grape"] repeated string value = 1 [(buf.validate.field).string.not_in = "orange", (buf.validate.field).string.not_in = "grape"]; } ```repeated string not_in = 11 [(.buf.validate.priv.field) = { ... }- Returns:
- This builder for chaining.
-
addNotInBytes
public StringRules.Builder addNotInBytes(com.google.protobuf.ByteString value)
`not_in` specifies that the field value cannot be equal to any of the specified values. If the field value is one of the specified values, an error message will be generated. ```proto message MyString { // value must not be in list ["orange", "grape"] repeated string value = 1 [(buf.validate.field).string.not_in = "orange", (buf.validate.field).string.not_in = "grape"]; } ```repeated string not_in = 11 [(.buf.validate.priv.field) = { ... }- Parameters:
value- The bytes of the notIn to add.- Returns:
- This builder for chaining.
-
hasEmail
public boolean hasEmail()
`email` specifies that the field value must be a valid email address (addr-spec only) as defined by [RFC 5322](https://tools.ietf.org/html/rfc5322#section-3.4.1). If the field value isn't a valid email address, an error message will be generated. ```proto message MyString { // value must be a valid email address string value = 1 [(buf.validate.field).string.email = true]; } ```bool email = 12 [(.buf.validate.priv.field) = { ... }- Specified by:
hasEmailin interfaceStringRulesOrBuilder- Returns:
- Whether the email field is set.
-
getEmail
public boolean getEmail()
`email` specifies that the field value must be a valid email address (addr-spec only) as defined by [RFC 5322](https://tools.ietf.org/html/rfc5322#section-3.4.1). If the field value isn't a valid email address, an error message will be generated. ```proto message MyString { // value must be a valid email address string value = 1 [(buf.validate.field).string.email = true]; } ```bool email = 12 [(.buf.validate.priv.field) = { ... }- Specified by:
getEmailin interfaceStringRulesOrBuilder- Returns:
- The email.
-
setEmail
public StringRules.Builder setEmail(boolean value)
`email` specifies that the field value must be a valid email address (addr-spec only) as defined by [RFC 5322](https://tools.ietf.org/html/rfc5322#section-3.4.1). If the field value isn't a valid email address, an error message will be generated. ```proto message MyString { // value must be a valid email address string value = 1 [(buf.validate.field).string.email = true]; } ```bool email = 12 [(.buf.validate.priv.field) = { ... }- Parameters:
value- The email to set.- Returns:
- This builder for chaining.
-
clearEmail
public StringRules.Builder clearEmail()
`email` specifies that the field value must be a valid email address (addr-spec only) as defined by [RFC 5322](https://tools.ietf.org/html/rfc5322#section-3.4.1). If the field value isn't a valid email address, an error message will be generated. ```proto message MyString { // value must be a valid email address string value = 1 [(buf.validate.field).string.email = true]; } ```bool email = 12 [(.buf.validate.priv.field) = { ... }- Returns:
- This builder for chaining.
-
hasHostname
public boolean hasHostname()
`hostname` specifies that the field value must be a valid hostname as defined by [RFC 1034](https://tools.ietf.org/html/rfc1034#section-3.5). This constraint doesn't support internationalized domain names (IDNs). If the field value isn't a valid hostname, an error message will be generated. ```proto message MyString { // value must be a valid hostname string value = 1 [(buf.validate.field).string.hostname = true]; } ```bool hostname = 13 [(.buf.validate.priv.field) = { ... }- Specified by:
hasHostnamein interfaceStringRulesOrBuilder- Returns:
- Whether the hostname field is set.
-
getHostname
public boolean getHostname()
`hostname` specifies that the field value must be a valid hostname as defined by [RFC 1034](https://tools.ietf.org/html/rfc1034#section-3.5). This constraint doesn't support internationalized domain names (IDNs). If the field value isn't a valid hostname, an error message will be generated. ```proto message MyString { // value must be a valid hostname string value = 1 [(buf.validate.field).string.hostname = true]; } ```bool hostname = 13 [(.buf.validate.priv.field) = { ... }- Specified by:
getHostnamein interfaceStringRulesOrBuilder- Returns:
- The hostname.
-
setHostname
public StringRules.Builder setHostname(boolean value)
`hostname` specifies that the field value must be a valid hostname as defined by [RFC 1034](https://tools.ietf.org/html/rfc1034#section-3.5). This constraint doesn't support internationalized domain names (IDNs). If the field value isn't a valid hostname, an error message will be generated. ```proto message MyString { // value must be a valid hostname string value = 1 [(buf.validate.field).string.hostname = true]; } ```bool hostname = 13 [(.buf.validate.priv.field) = { ... }- Parameters:
value- The hostname to set.- Returns:
- This builder for chaining.
-
clearHostname
public StringRules.Builder clearHostname()
`hostname` specifies that the field value must be a valid hostname as defined by [RFC 1034](https://tools.ietf.org/html/rfc1034#section-3.5). This constraint doesn't support internationalized domain names (IDNs). If the field value isn't a valid hostname, an error message will be generated. ```proto message MyString { // value must be a valid hostname string value = 1 [(buf.validate.field).string.hostname = true]; } ```bool hostname = 13 [(.buf.validate.priv.field) = { ... }- Returns:
- This builder for chaining.
-
hasIp
public boolean hasIp()
`ip` specifies that the field value must be a valid IP (v4 or v6) address, without surrounding square brackets for IPv6 addresses. If the field value isn't a valid IP address, an error message will be generated. ```proto message MyString { // value must be a valid IP address string value = 1 [(buf.validate.field).string.ip = true]; } ```bool ip = 14 [(.buf.validate.priv.field) = { ... }- Specified by:
hasIpin interfaceStringRulesOrBuilder- Returns:
- Whether the ip field is set.
-
getIp
public boolean getIp()
`ip` specifies that the field value must be a valid IP (v4 or v6) address, without surrounding square brackets for IPv6 addresses. If the field value isn't a valid IP address, an error message will be generated. ```proto message MyString { // value must be a valid IP address string value = 1 [(buf.validate.field).string.ip = true]; } ```bool ip = 14 [(.buf.validate.priv.field) = { ... }- Specified by:
getIpin interfaceStringRulesOrBuilder- Returns:
- The ip.
-
setIp
public StringRules.Builder setIp(boolean value)
`ip` specifies that the field value must be a valid IP (v4 or v6) address, without surrounding square brackets for IPv6 addresses. If the field value isn't a valid IP address, an error message will be generated. ```proto message MyString { // value must be a valid IP address string value = 1 [(buf.validate.field).string.ip = true]; } ```bool ip = 14 [(.buf.validate.priv.field) = { ... }- Parameters:
value- The ip to set.- Returns:
- This builder for chaining.
-
clearIp
public StringRules.Builder clearIp()
`ip` specifies that the field value must be a valid IP (v4 or v6) address, without surrounding square brackets for IPv6 addresses. If the field value isn't a valid IP address, an error message will be generated. ```proto message MyString { // value must be a valid IP address string value = 1 [(buf.validate.field).string.ip = true]; } ```bool ip = 14 [(.buf.validate.priv.field) = { ... }- Returns:
- This builder for chaining.
-
hasIpv4
public boolean hasIpv4()
`ipv4` specifies that the field value must be a valid IPv4 address. If the field value isn't a valid IPv4 address, an error message will be generated. ```proto message MyString { // value must be a valid IPv4 address string value = 1 [(buf.validate.field).string.ipv4 = true]; } ```bool ipv4 = 15 [(.buf.validate.priv.field) = { ... }- Specified by:
hasIpv4in interfaceStringRulesOrBuilder- Returns:
- Whether the ipv4 field is set.
-
getIpv4
public boolean getIpv4()
`ipv4` specifies that the field value must be a valid IPv4 address. If the field value isn't a valid IPv4 address, an error message will be generated. ```proto message MyString { // value must be a valid IPv4 address string value = 1 [(buf.validate.field).string.ipv4 = true]; } ```bool ipv4 = 15 [(.buf.validate.priv.field) = { ... }- Specified by:
getIpv4in interfaceStringRulesOrBuilder- Returns:
- The ipv4.
-
setIpv4
public StringRules.Builder setIpv4(boolean value)
`ipv4` specifies that the field value must be a valid IPv4 address. If the field value isn't a valid IPv4 address, an error message will be generated. ```proto message MyString { // value must be a valid IPv4 address string value = 1 [(buf.validate.field).string.ipv4 = true]; } ```bool ipv4 = 15 [(.buf.validate.priv.field) = { ... }- Parameters:
value- The ipv4 to set.- Returns:
- This builder for chaining.
-
clearIpv4
public StringRules.Builder clearIpv4()
`ipv4` specifies that the field value must be a valid IPv4 address. If the field value isn't a valid IPv4 address, an error message will be generated. ```proto message MyString { // value must be a valid IPv4 address string value = 1 [(buf.validate.field).string.ipv4 = true]; } ```bool ipv4 = 15 [(.buf.validate.priv.field) = { ... }- Returns:
- This builder for chaining.
-
hasIpv6
public boolean hasIpv6()
`ipv6` specifies that the field value must be a valid IPv6 address, without surrounding square brackets. If the field value is not a valid IPv6 address, an error message will be generated. ```proto message MyString { // value must be a valid IPv6 address string value = 1 [(buf.validate.field).string.ipv6 = true]; } ```bool ipv6 = 16 [(.buf.validate.priv.field) = { ... }- Specified by:
hasIpv6in interfaceStringRulesOrBuilder- Returns:
- Whether the ipv6 field is set.
-
getIpv6
public boolean getIpv6()
`ipv6` specifies that the field value must be a valid IPv6 address, without surrounding square brackets. If the field value is not a valid IPv6 address, an error message will be generated. ```proto message MyString { // value must be a valid IPv6 address string value = 1 [(buf.validate.field).string.ipv6 = true]; } ```bool ipv6 = 16 [(.buf.validate.priv.field) = { ... }- Specified by:
getIpv6in interfaceStringRulesOrBuilder- Returns:
- The ipv6.
-
setIpv6
public StringRules.Builder setIpv6(boolean value)
`ipv6` specifies that the field value must be a valid IPv6 address, without surrounding square brackets. If the field value is not a valid IPv6 address, an error message will be generated. ```proto message MyString { // value must be a valid IPv6 address string value = 1 [(buf.validate.field).string.ipv6 = true]; } ```bool ipv6 = 16 [(.buf.validate.priv.field) = { ... }- Parameters:
value- The ipv6 to set.- Returns:
- This builder for chaining.
-
clearIpv6
public StringRules.Builder clearIpv6()
`ipv6` specifies that the field value must be a valid IPv6 address, without surrounding square brackets. If the field value is not a valid IPv6 address, an error message will be generated. ```proto message MyString { // value must be a valid IPv6 address string value = 1 [(buf.validate.field).string.ipv6 = true]; } ```bool ipv6 = 16 [(.buf.validate.priv.field) = { ... }- Returns:
- This builder for chaining.
-
hasUri
public boolean hasUri()
`uri` specifies that the field value must be a valid, absolute URI as defined by [RFC 3986](https://tools.ietf.org/html/rfc3986#section-3). If the field value isn't a valid, absolute URI, an error message will be generated. ```proto message MyString { // value must be a valid URI string value = 1 [(buf.validate.field).string.uri = true]; } ```bool uri = 17 [(.buf.validate.priv.field) = { ... }- Specified by:
hasUriin interfaceStringRulesOrBuilder- Returns:
- Whether the uri field is set.
-
getUri
public boolean getUri()
`uri` specifies that the field value must be a valid, absolute URI as defined by [RFC 3986](https://tools.ietf.org/html/rfc3986#section-3). If the field value isn't a valid, absolute URI, an error message will be generated. ```proto message MyString { // value must be a valid URI string value = 1 [(buf.validate.field).string.uri = true]; } ```bool uri = 17 [(.buf.validate.priv.field) = { ... }- Specified by:
getUriin interfaceStringRulesOrBuilder- Returns:
- The uri.
-
setUri
public StringRules.Builder setUri(boolean value)
`uri` specifies that the field value must be a valid, absolute URI as defined by [RFC 3986](https://tools.ietf.org/html/rfc3986#section-3). If the field value isn't a valid, absolute URI, an error message will be generated. ```proto message MyString { // value must be a valid URI string value = 1 [(buf.validate.field).string.uri = true]; } ```bool uri = 17 [(.buf.validate.priv.field) = { ... }- Parameters:
value- The uri to set.- Returns:
- This builder for chaining.
-
clearUri
public StringRules.Builder clearUri()
`uri` specifies that the field value must be a valid, absolute URI as defined by [RFC 3986](https://tools.ietf.org/html/rfc3986#section-3). If the field value isn't a valid, absolute URI, an error message will be generated. ```proto message MyString { // value must be a valid URI string value = 1 [(buf.validate.field).string.uri = true]; } ```bool uri = 17 [(.buf.validate.priv.field) = { ... }- Returns:
- This builder for chaining.
-
hasUriRef
public boolean hasUriRef()
`uri_ref` specifies that the field value must be a valid URI as defined by [RFC 3986](https://tools.ietf.org/html/rfc3986#section-3) and may be either relative or absolute. If the field value isn't a valid URI, an error message will be generated. ```proto message MyString { // value must be a valid URI string value = 1 [(buf.validate.field).string.uri_ref = true]; } ```bool uri_ref = 18 [(.buf.validate.priv.field) = { ... }- Specified by:
hasUriRefin interfaceStringRulesOrBuilder- Returns:
- Whether the uriRef field is set.
-
getUriRef
public boolean getUriRef()
`uri_ref` specifies that the field value must be a valid URI as defined by [RFC 3986](https://tools.ietf.org/html/rfc3986#section-3) and may be either relative or absolute. If the field value isn't a valid URI, an error message will be generated. ```proto message MyString { // value must be a valid URI string value = 1 [(buf.validate.field).string.uri_ref = true]; } ```bool uri_ref = 18 [(.buf.validate.priv.field) = { ... }- Specified by:
getUriRefin interfaceStringRulesOrBuilder- Returns:
- The uriRef.
-
setUriRef
public StringRules.Builder setUriRef(boolean value)
`uri_ref` specifies that the field value must be a valid URI as defined by [RFC 3986](https://tools.ietf.org/html/rfc3986#section-3) and may be either relative or absolute. If the field value isn't a valid URI, an error message will be generated. ```proto message MyString { // value must be a valid URI string value = 1 [(buf.validate.field).string.uri_ref = true]; } ```bool uri_ref = 18 [(.buf.validate.priv.field) = { ... }- Parameters:
value- The uriRef to set.- Returns:
- This builder for chaining.
-
clearUriRef
public StringRules.Builder clearUriRef()
`uri_ref` specifies that the field value must be a valid URI as defined by [RFC 3986](https://tools.ietf.org/html/rfc3986#section-3) and may be either relative or absolute. If the field value isn't a valid URI, an error message will be generated. ```proto message MyString { // value must be a valid URI string value = 1 [(buf.validate.field).string.uri_ref = true]; } ```bool uri_ref = 18 [(.buf.validate.priv.field) = { ... }- Returns:
- This builder for chaining.
-
hasAddress
public boolean hasAddress()
`address` specifies that the field value must be either a valid hostname as defined by [RFC 1034](https://tools.ietf.org/html/rfc1034#section-3.5) (which doesn't support internationalized domain names or IDNs) or a valid IP (v4 or v6). If the field value isn't a valid hostname or IP, an error message will be generated. ```proto message MyString { // value must be a valid hostname, or ip address string value = 1 [(buf.validate.field).string.address = true]; } ```bool address = 21 [(.buf.validate.priv.field) = { ... }- Specified by:
hasAddressin interfaceStringRulesOrBuilder- Returns:
- Whether the address field is set.
-
getAddress
public boolean getAddress()
`address` specifies that the field value must be either a valid hostname as defined by [RFC 1034](https://tools.ietf.org/html/rfc1034#section-3.5) (which doesn't support internationalized domain names or IDNs) or a valid IP (v4 or v6). If the field value isn't a valid hostname or IP, an error message will be generated. ```proto message MyString { // value must be a valid hostname, or ip address string value = 1 [(buf.validate.field).string.address = true]; } ```bool address = 21 [(.buf.validate.priv.field) = { ... }- Specified by:
getAddressin interfaceStringRulesOrBuilder- Returns:
- The address.
-
setAddress
public StringRules.Builder setAddress(boolean value)
`address` specifies that the field value must be either a valid hostname as defined by [RFC 1034](https://tools.ietf.org/html/rfc1034#section-3.5) (which doesn't support internationalized domain names or IDNs) or a valid IP (v4 or v6). If the field value isn't a valid hostname or IP, an error message will be generated. ```proto message MyString { // value must be a valid hostname, or ip address string value = 1 [(buf.validate.field).string.address = true]; } ```bool address = 21 [(.buf.validate.priv.field) = { ... }- Parameters:
value- The address to set.- Returns:
- This builder for chaining.
-
clearAddress
public StringRules.Builder clearAddress()
`address` specifies that the field value must be either a valid hostname as defined by [RFC 1034](https://tools.ietf.org/html/rfc1034#section-3.5) (which doesn't support internationalized domain names or IDNs) or a valid IP (v4 or v6). If the field value isn't a valid hostname or IP, an error message will be generated. ```proto message MyString { // value must be a valid hostname, or ip address string value = 1 [(buf.validate.field).string.address = true]; } ```bool address = 21 [(.buf.validate.priv.field) = { ... }- Returns:
- This builder for chaining.
-
hasUuid
public boolean hasUuid()
`uuid` specifies that the field value must be a valid UUID as defined by [RFC 4122](https://tools.ietf.org/html/rfc4122#section-4.1.2). If the field value isn't a valid UUID, an error message will be generated. ```proto message MyString { // value must be a valid UUID string value = 1 [(buf.validate.field).string.uuid = true]; } ```bool uuid = 22 [(.buf.validate.priv.field) = { ... }- Specified by:
hasUuidin interfaceStringRulesOrBuilder- Returns:
- Whether the uuid field is set.
-
getUuid
public boolean getUuid()
`uuid` specifies that the field value must be a valid UUID as defined by [RFC 4122](https://tools.ietf.org/html/rfc4122#section-4.1.2). If the field value isn't a valid UUID, an error message will be generated. ```proto message MyString { // value must be a valid UUID string value = 1 [(buf.validate.field).string.uuid = true]; } ```bool uuid = 22 [(.buf.validate.priv.field) = { ... }- Specified by:
getUuidin interfaceStringRulesOrBuilder- Returns:
- The uuid.
-
setUuid
public StringRules.Builder setUuid(boolean value)
`uuid` specifies that the field value must be a valid UUID as defined by [RFC 4122](https://tools.ietf.org/html/rfc4122#section-4.1.2). If the field value isn't a valid UUID, an error message will be generated. ```proto message MyString { // value must be a valid UUID string value = 1 [(buf.validate.field).string.uuid = true]; } ```bool uuid = 22 [(.buf.validate.priv.field) = { ... }- Parameters:
value- The uuid to set.- Returns:
- This builder for chaining.
-
clearUuid
public StringRules.Builder clearUuid()
`uuid` specifies that the field value must be a valid UUID as defined by [RFC 4122](https://tools.ietf.org/html/rfc4122#section-4.1.2). If the field value isn't a valid UUID, an error message will be generated. ```proto message MyString { // value must be a valid UUID string value = 1 [(buf.validate.field).string.uuid = true]; } ```bool uuid = 22 [(.buf.validate.priv.field) = { ... }- Returns:
- This builder for chaining.
-
hasIpWithPrefixlen
public boolean hasIpWithPrefixlen()
`ip_with_prefixlen` specifies that the field value must be a valid IP (v4 or v6) address with prefix length. If the field value isn't a valid IP with prefix length, an error message will be generated. ```proto message MyString { // value must be a valid IP with prefix length string value = 1 [(buf.validate.field).string.ip_with_prefixlen = true]; } ```bool ip_with_prefixlen = 26 [(.buf.validate.priv.field) = { ... }- Specified by:
hasIpWithPrefixlenin interfaceStringRulesOrBuilder- Returns:
- Whether the ipWithPrefixlen field is set.
-
getIpWithPrefixlen
public boolean getIpWithPrefixlen()
`ip_with_prefixlen` specifies that the field value must be a valid IP (v4 or v6) address with prefix length. If the field value isn't a valid IP with prefix length, an error message will be generated. ```proto message MyString { // value must be a valid IP with prefix length string value = 1 [(buf.validate.field).string.ip_with_prefixlen = true]; } ```bool ip_with_prefixlen = 26 [(.buf.validate.priv.field) = { ... }- Specified by:
getIpWithPrefixlenin interfaceStringRulesOrBuilder- Returns:
- The ipWithPrefixlen.
-
setIpWithPrefixlen
public StringRules.Builder setIpWithPrefixlen(boolean value)
`ip_with_prefixlen` specifies that the field value must be a valid IP (v4 or v6) address with prefix length. If the field value isn't a valid IP with prefix length, an error message will be generated. ```proto message MyString { // value must be a valid IP with prefix length string value = 1 [(buf.validate.field).string.ip_with_prefixlen = true]; } ```bool ip_with_prefixlen = 26 [(.buf.validate.priv.field) = { ... }- Parameters:
value- The ipWithPrefixlen to set.- Returns:
- This builder for chaining.
-
clearIpWithPrefixlen
public StringRules.Builder clearIpWithPrefixlen()
`ip_with_prefixlen` specifies that the field value must be a valid IP (v4 or v6) address with prefix length. If the field value isn't a valid IP with prefix length, an error message will be generated. ```proto message MyString { // value must be a valid IP with prefix length string value = 1 [(buf.validate.field).string.ip_with_prefixlen = true]; } ```bool ip_with_prefixlen = 26 [(.buf.validate.priv.field) = { ... }- Returns:
- This builder for chaining.
-
hasIpv4WithPrefixlen
public boolean hasIpv4WithPrefixlen()
`ipv4_with_prefixlen` specifies that the field value must be a valid IPv4 address with prefix. If the field value isn't a valid IPv4 address with prefix length, an error message will be generated. ```proto message MyString { // value must be a valid IPv4 address with prefix lentgh string value = 1 [(buf.validate.field).string.ipv4_with_prefixlen = true]; } ```bool ipv4_with_prefixlen = 27 [(.buf.validate.priv.field) = { ... }- Specified by:
hasIpv4WithPrefixlenin interfaceStringRulesOrBuilder- Returns:
- Whether the ipv4WithPrefixlen field is set.
-
getIpv4WithPrefixlen
public boolean getIpv4WithPrefixlen()
`ipv4_with_prefixlen` specifies that the field value must be a valid IPv4 address with prefix. If the field value isn't a valid IPv4 address with prefix length, an error message will be generated. ```proto message MyString { // value must be a valid IPv4 address with prefix lentgh string value = 1 [(buf.validate.field).string.ipv4_with_prefixlen = true]; } ```bool ipv4_with_prefixlen = 27 [(.buf.validate.priv.field) = { ... }- Specified by:
getIpv4WithPrefixlenin interfaceStringRulesOrBuilder- Returns:
- The ipv4WithPrefixlen.
-
setIpv4WithPrefixlen
public StringRules.Builder setIpv4WithPrefixlen(boolean value)
`ipv4_with_prefixlen` specifies that the field value must be a valid IPv4 address with prefix. If the field value isn't a valid IPv4 address with prefix length, an error message will be generated. ```proto message MyString { // value must be a valid IPv4 address with prefix lentgh string value = 1 [(buf.validate.field).string.ipv4_with_prefixlen = true]; } ```bool ipv4_with_prefixlen = 27 [(.buf.validate.priv.field) = { ... }- Parameters:
value- The ipv4WithPrefixlen to set.- Returns:
- This builder for chaining.
-
clearIpv4WithPrefixlen
public StringRules.Builder clearIpv4WithPrefixlen()
`ipv4_with_prefixlen` specifies that the field value must be a valid IPv4 address with prefix. If the field value isn't a valid IPv4 address with prefix length, an error message will be generated. ```proto message MyString { // value must be a valid IPv4 address with prefix lentgh string value = 1 [(buf.validate.field).string.ipv4_with_prefixlen = true]; } ```bool ipv4_with_prefixlen = 27 [(.buf.validate.priv.field) = { ... }- Returns:
- This builder for chaining.
-
hasIpv6WithPrefixlen
public boolean hasIpv6WithPrefixlen()
`ipv6_with_prefixlen` specifies that the field value must be a valid IPv6 address with prefix length. If the field value is not a valid IPv6 address with prefix length, an error message will be generated. ```proto message MyString { // value must be a valid IPv6 address prefix length string value = 1 [(buf.validate.field).string.ipv6_with_prefixlen = true]; } ```bool ipv6_with_prefixlen = 28 [(.buf.validate.priv.field) = { ... }- Specified by:
hasIpv6WithPrefixlenin interfaceStringRulesOrBuilder- Returns:
- Whether the ipv6WithPrefixlen field is set.
-
getIpv6WithPrefixlen
public boolean getIpv6WithPrefixlen()
`ipv6_with_prefixlen` specifies that the field value must be a valid IPv6 address with prefix length. If the field value is not a valid IPv6 address with prefix length, an error message will be generated. ```proto message MyString { // value must be a valid IPv6 address prefix length string value = 1 [(buf.validate.field).string.ipv6_with_prefixlen = true]; } ```bool ipv6_with_prefixlen = 28 [(.buf.validate.priv.field) = { ... }- Specified by:
getIpv6WithPrefixlenin interfaceStringRulesOrBuilder- Returns:
- The ipv6WithPrefixlen.
-
setIpv6WithPrefixlen
public StringRules.Builder setIpv6WithPrefixlen(boolean value)
`ipv6_with_prefixlen` specifies that the field value must be a valid IPv6 address with prefix length. If the field value is not a valid IPv6 address with prefix length, an error message will be generated. ```proto message MyString { // value must be a valid IPv6 address prefix length string value = 1 [(buf.validate.field).string.ipv6_with_prefixlen = true]; } ```bool ipv6_with_prefixlen = 28 [(.buf.validate.priv.field) = { ... }- Parameters:
value- The ipv6WithPrefixlen to set.- Returns:
- This builder for chaining.
-
clearIpv6WithPrefixlen
public StringRules.Builder clearIpv6WithPrefixlen()
`ipv6_with_prefixlen` specifies that the field value must be a valid IPv6 address with prefix length. If the field value is not a valid IPv6 address with prefix length, an error message will be generated. ```proto message MyString { // value must be a valid IPv6 address prefix length string value = 1 [(buf.validate.field).string.ipv6_with_prefixlen = true]; } ```bool ipv6_with_prefixlen = 28 [(.buf.validate.priv.field) = { ... }- Returns:
- This builder for chaining.
-
hasIpPrefix
public boolean hasIpPrefix()
`ip_prefix` specifies that the field value must be a valid IP (v4 or v6) prefix. If the field value isn't a valid IP prefix, an error message will be generated. The prefix must have all zeros for the masked bits of the prefix (e.g., `127.0.0.0/16`, not `127.0.0.1/16`). ```proto message MyString { // value must be a valid IP prefix string value = 1 [(buf.validate.field).string.ip_prefix = true]; } ```bool ip_prefix = 29 [(.buf.validate.priv.field) = { ... }- Specified by:
hasIpPrefixin interfaceStringRulesOrBuilder- Returns:
- Whether the ipPrefix field is set.
-
getIpPrefix
public boolean getIpPrefix()
`ip_prefix` specifies that the field value must be a valid IP (v4 or v6) prefix. If the field value isn't a valid IP prefix, an error message will be generated. The prefix must have all zeros for the masked bits of the prefix (e.g., `127.0.0.0/16`, not `127.0.0.1/16`). ```proto message MyString { // value must be a valid IP prefix string value = 1 [(buf.validate.field).string.ip_prefix = true]; } ```bool ip_prefix = 29 [(.buf.validate.priv.field) = { ... }- Specified by:
getIpPrefixin interfaceStringRulesOrBuilder- Returns:
- The ipPrefix.
-
setIpPrefix
public StringRules.Builder setIpPrefix(boolean value)
`ip_prefix` specifies that the field value must be a valid IP (v4 or v6) prefix. If the field value isn't a valid IP prefix, an error message will be generated. The prefix must have all zeros for the masked bits of the prefix (e.g., `127.0.0.0/16`, not `127.0.0.1/16`). ```proto message MyString { // value must be a valid IP prefix string value = 1 [(buf.validate.field).string.ip_prefix = true]; } ```bool ip_prefix = 29 [(.buf.validate.priv.field) = { ... }- Parameters:
value- The ipPrefix to set.- Returns:
- This builder for chaining.
-
clearIpPrefix
public StringRules.Builder clearIpPrefix()
`ip_prefix` specifies that the field value must be a valid IP (v4 or v6) prefix. If the field value isn't a valid IP prefix, an error message will be generated. The prefix must have all zeros for the masked bits of the prefix (e.g., `127.0.0.0/16`, not `127.0.0.1/16`). ```proto message MyString { // value must be a valid IP prefix string value = 1 [(buf.validate.field).string.ip_prefix = true]; } ```bool ip_prefix = 29 [(.buf.validate.priv.field) = { ... }- Returns:
- This builder for chaining.
-
hasIpv4Prefix
public boolean hasIpv4Prefix()
`ipv4_prefix` specifies that the field value must be a valid IPv4 prefix. If the field value isn't a valid IPv4 prefix, an error message will be generated. The prefix must have all zeros for the masked bits of the prefix (e.g., `127.0.0.0/16`, not `127.0.0.1/16`). ```proto message MyString { // value must be a valid IPv4 prefix string value = 1 [(buf.validate.field).string.ipv4_prefix = true]; } ```bool ipv4_prefix = 30 [(.buf.validate.priv.field) = { ... }- Specified by:
hasIpv4Prefixin interfaceStringRulesOrBuilder- Returns:
- Whether the ipv4Prefix field is set.
-
getIpv4Prefix
public boolean getIpv4Prefix()
`ipv4_prefix` specifies that the field value must be a valid IPv4 prefix. If the field value isn't a valid IPv4 prefix, an error message will be generated. The prefix must have all zeros for the masked bits of the prefix (e.g., `127.0.0.0/16`, not `127.0.0.1/16`). ```proto message MyString { // value must be a valid IPv4 prefix string value = 1 [(buf.validate.field).string.ipv4_prefix = true]; } ```bool ipv4_prefix = 30 [(.buf.validate.priv.field) = { ... }- Specified by:
getIpv4Prefixin interfaceStringRulesOrBuilder- Returns:
- The ipv4Prefix.
-
setIpv4Prefix
public StringRules.Builder setIpv4Prefix(boolean value)
`ipv4_prefix` specifies that the field value must be a valid IPv4 prefix. If the field value isn't a valid IPv4 prefix, an error message will be generated. The prefix must have all zeros for the masked bits of the prefix (e.g., `127.0.0.0/16`, not `127.0.0.1/16`). ```proto message MyString { // value must be a valid IPv4 prefix string value = 1 [(buf.validate.field).string.ipv4_prefix = true]; } ```bool ipv4_prefix = 30 [(.buf.validate.priv.field) = { ... }- Parameters:
value- The ipv4Prefix to set.- Returns:
- This builder for chaining.
-
clearIpv4Prefix
public StringRules.Builder clearIpv4Prefix()
`ipv4_prefix` specifies that the field value must be a valid IPv4 prefix. If the field value isn't a valid IPv4 prefix, an error message will be generated. The prefix must have all zeros for the masked bits of the prefix (e.g., `127.0.0.0/16`, not `127.0.0.1/16`). ```proto message MyString { // value must be a valid IPv4 prefix string value = 1 [(buf.validate.field).string.ipv4_prefix = true]; } ```bool ipv4_prefix = 30 [(.buf.validate.priv.field) = { ... }- Returns:
- This builder for chaining.
-
hasIpv6Prefix
public boolean hasIpv6Prefix()
`ipv6_prefix` specifies that the field value must be a valid IPv6 prefix. If the field value is not a valid IPv6 prefix, an error message will be generated. The prefix must have all zeros for the masked bits of the prefix (e.g., `2001:db8::/48`, not `2001:db8::1/48`). ```proto message MyString { // value must be a valid IPv6 prefix string value = 1 [(buf.validate.field).string.ipv6_prefix = true]; } ```bool ipv6_prefix = 31 [(.buf.validate.priv.field) = { ... }- Specified by:
hasIpv6Prefixin interfaceStringRulesOrBuilder- Returns:
- Whether the ipv6Prefix field is set.
-
getIpv6Prefix
public boolean getIpv6Prefix()
`ipv6_prefix` specifies that the field value must be a valid IPv6 prefix. If the field value is not a valid IPv6 prefix, an error message will be generated. The prefix must have all zeros for the masked bits of the prefix (e.g., `2001:db8::/48`, not `2001:db8::1/48`). ```proto message MyString { // value must be a valid IPv6 prefix string value = 1 [(buf.validate.field).string.ipv6_prefix = true]; } ```bool ipv6_prefix = 31 [(.buf.validate.priv.field) = { ... }- Specified by:
getIpv6Prefixin interfaceStringRulesOrBuilder- Returns:
- The ipv6Prefix.
-
setIpv6Prefix
public StringRules.Builder setIpv6Prefix(boolean value)
`ipv6_prefix` specifies that the field value must be a valid IPv6 prefix. If the field value is not a valid IPv6 prefix, an error message will be generated. The prefix must have all zeros for the masked bits of the prefix (e.g., `2001:db8::/48`, not `2001:db8::1/48`). ```proto message MyString { // value must be a valid IPv6 prefix string value = 1 [(buf.validate.field).string.ipv6_prefix = true]; } ```bool ipv6_prefix = 31 [(.buf.validate.priv.field) = { ... }- Parameters:
value- The ipv6Prefix to set.- Returns:
- This builder for chaining.
-
clearIpv6Prefix
public StringRules.Builder clearIpv6Prefix()
`ipv6_prefix` specifies that the field value must be a valid IPv6 prefix. If the field value is not a valid IPv6 prefix, an error message will be generated. The prefix must have all zeros for the masked bits of the prefix (e.g., `2001:db8::/48`, not `2001:db8::1/48`). ```proto message MyString { // value must be a valid IPv6 prefix string value = 1 [(buf.validate.field).string.ipv6_prefix = true]; } ```bool ipv6_prefix = 31 [(.buf.validate.priv.field) = { ... }- Returns:
- This builder for chaining.
-
hasWellKnownRegex
public boolean hasWellKnownRegex()
`well_known_regex` specifies a common well-known pattern defined as a regex. If the field value doesn't match the well-known regex, an error message will be generated. ```proto message MyString { // value must be a valid HTTP header value string value = 1 [(buf.validate.field).string.well_known_regex = 2]; } ``` #### KnownRegex `well_known_regex` contains some well-known patterns. | Name | Number | Description | |-------------------------------|--------|-------------------------------------------| | KNOWN_REGEX_UNSPECIFIED | 0 | | | KNOWN_REGEX_HTTP_HEADER_NAME | 1 | HTTP header name as defined by [RFC 7230](https://tools.ietf.org/html/rfc7230#section-3.2) | | KNOWN_REGEX_HTTP_HEADER_VALUE | 2 | HTTP header value as defined by [RFC 7230](https://tools.ietf.org/html/rfc7230#section-3.2.4) |.buf.validate.KnownRegex well_known_regex = 24 [(.buf.validate.priv.field) = { ... }- Specified by:
hasWellKnownRegexin interfaceStringRulesOrBuilder- Returns:
- Whether the wellKnownRegex field is set.
-
getWellKnownRegexValue
public int getWellKnownRegexValue()
`well_known_regex` specifies a common well-known pattern defined as a regex. If the field value doesn't match the well-known regex, an error message will be generated. ```proto message MyString { // value must be a valid HTTP header value string value = 1 [(buf.validate.field).string.well_known_regex = 2]; } ``` #### KnownRegex `well_known_regex` contains some well-known patterns. | Name | Number | Description | |-------------------------------|--------|-------------------------------------------| | KNOWN_REGEX_UNSPECIFIED | 0 | | | KNOWN_REGEX_HTTP_HEADER_NAME | 1 | HTTP header name as defined by [RFC 7230](https://tools.ietf.org/html/rfc7230#section-3.2) | | KNOWN_REGEX_HTTP_HEADER_VALUE | 2 | HTTP header value as defined by [RFC 7230](https://tools.ietf.org/html/rfc7230#section-3.2.4) |.buf.validate.KnownRegex well_known_regex = 24 [(.buf.validate.priv.field) = { ... }- Specified by:
getWellKnownRegexValuein interfaceStringRulesOrBuilder- Returns:
- The enum numeric value on the wire for wellKnownRegex.
-
setWellKnownRegexValue
public StringRules.Builder setWellKnownRegexValue(int value)
`well_known_regex` specifies a common well-known pattern defined as a regex. If the field value doesn't match the well-known regex, an error message will be generated. ```proto message MyString { // value must be a valid HTTP header value string value = 1 [(buf.validate.field).string.well_known_regex = 2]; } ``` #### KnownRegex `well_known_regex` contains some well-known patterns. | Name | Number | Description | |-------------------------------|--------|-------------------------------------------| | KNOWN_REGEX_UNSPECIFIED | 0 | | | KNOWN_REGEX_HTTP_HEADER_NAME | 1 | HTTP header name as defined by [RFC 7230](https://tools.ietf.org/html/rfc7230#section-3.2) | | KNOWN_REGEX_HTTP_HEADER_VALUE | 2 | HTTP header value as defined by [RFC 7230](https://tools.ietf.org/html/rfc7230#section-3.2.4) |.buf.validate.KnownRegex well_known_regex = 24 [(.buf.validate.priv.field) = { ... }- Parameters:
value- The enum numeric value on the wire for wellKnownRegex to set.- Returns:
- This builder for chaining.
-
getWellKnownRegex
public KnownRegex getWellKnownRegex()
`well_known_regex` specifies a common well-known pattern defined as a regex. If the field value doesn't match the well-known regex, an error message will be generated. ```proto message MyString { // value must be a valid HTTP header value string value = 1 [(buf.validate.field).string.well_known_regex = 2]; } ``` #### KnownRegex `well_known_regex` contains some well-known patterns. | Name | Number | Description | |-------------------------------|--------|-------------------------------------------| | KNOWN_REGEX_UNSPECIFIED | 0 | | | KNOWN_REGEX_HTTP_HEADER_NAME | 1 | HTTP header name as defined by [RFC 7230](https://tools.ietf.org/html/rfc7230#section-3.2) | | KNOWN_REGEX_HTTP_HEADER_VALUE | 2 | HTTP header value as defined by [RFC 7230](https://tools.ietf.org/html/rfc7230#section-3.2.4) |.buf.validate.KnownRegex well_known_regex = 24 [(.buf.validate.priv.field) = { ... }- Specified by:
getWellKnownRegexin interfaceStringRulesOrBuilder- Returns:
- The wellKnownRegex.
-
setWellKnownRegex
public StringRules.Builder setWellKnownRegex(KnownRegex value)
`well_known_regex` specifies a common well-known pattern defined as a regex. If the field value doesn't match the well-known regex, an error message will be generated. ```proto message MyString { // value must be a valid HTTP header value string value = 1 [(buf.validate.field).string.well_known_regex = 2]; } ``` #### KnownRegex `well_known_regex` contains some well-known patterns. | Name | Number | Description | |-------------------------------|--------|-------------------------------------------| | KNOWN_REGEX_UNSPECIFIED | 0 | | | KNOWN_REGEX_HTTP_HEADER_NAME | 1 | HTTP header name as defined by [RFC 7230](https://tools.ietf.org/html/rfc7230#section-3.2) | | KNOWN_REGEX_HTTP_HEADER_VALUE | 2 | HTTP header value as defined by [RFC 7230](https://tools.ietf.org/html/rfc7230#section-3.2.4) |.buf.validate.KnownRegex well_known_regex = 24 [(.buf.validate.priv.field) = { ... }- Parameters:
value- The wellKnownRegex to set.- Returns:
- This builder for chaining.
-
clearWellKnownRegex
public StringRules.Builder clearWellKnownRegex()
`well_known_regex` specifies a common well-known pattern defined as a regex. If the field value doesn't match the well-known regex, an error message will be generated. ```proto message MyString { // value must be a valid HTTP header value string value = 1 [(buf.validate.field).string.well_known_regex = 2]; } ``` #### KnownRegex `well_known_regex` contains some well-known patterns. | Name | Number | Description | |-------------------------------|--------|-------------------------------------------| | KNOWN_REGEX_UNSPECIFIED | 0 | | | KNOWN_REGEX_HTTP_HEADER_NAME | 1 | HTTP header name as defined by [RFC 7230](https://tools.ietf.org/html/rfc7230#section-3.2) | | KNOWN_REGEX_HTTP_HEADER_VALUE | 2 | HTTP header value as defined by [RFC 7230](https://tools.ietf.org/html/rfc7230#section-3.2.4) |.buf.validate.KnownRegex well_known_regex = 24 [(.buf.validate.priv.field) = { ... }- Returns:
- This builder for chaining.
-
hasStrict
public boolean hasStrict()
This applies to regexes `HTTP_HEADER_NAME` and `HTTP_HEADER_VALUE` to enable strict header validation. By default, this is true, and HTTP header validations are [RFC-compliant](https://tools.ietf.org/html/rfc7230#section-3). Setting to false will enable looser validations that only disallow `\r\n\0` characters, which can be used to bypass header matching rules. ```proto message MyString { // The field `value` must have be a valid HTTP headers, but not enforced with strict rules. string value = 1 [(buf.validate.field).string.strict = false]; } ```optional bool strict = 25;- Specified by:
hasStrictin interfaceStringRulesOrBuilder- Returns:
- Whether the strict field is set.
-
getStrict
public boolean getStrict()
This applies to regexes `HTTP_HEADER_NAME` and `HTTP_HEADER_VALUE` to enable strict header validation. By default, this is true, and HTTP header validations are [RFC-compliant](https://tools.ietf.org/html/rfc7230#section-3). Setting to false will enable looser validations that only disallow `\r\n\0` characters, which can be used to bypass header matching rules. ```proto message MyString { // The field `value` must have be a valid HTTP headers, but not enforced with strict rules. string value = 1 [(buf.validate.field).string.strict = false]; } ```optional bool strict = 25;- Specified by:
getStrictin interfaceStringRulesOrBuilder- Returns:
- The strict.
-
setStrict
public StringRules.Builder setStrict(boolean value)
This applies to regexes `HTTP_HEADER_NAME` and `HTTP_HEADER_VALUE` to enable strict header validation. By default, this is true, and HTTP header validations are [RFC-compliant](https://tools.ietf.org/html/rfc7230#section-3). Setting to false will enable looser validations that only disallow `\r\n\0` characters, which can be used to bypass header matching rules. ```proto message MyString { // The field `value` must have be a valid HTTP headers, but not enforced with strict rules. string value = 1 [(buf.validate.field).string.strict = false]; } ```optional bool strict = 25;- Parameters:
value- The strict to set.- Returns:
- This builder for chaining.
-
clearStrict
public StringRules.Builder clearStrict()
This applies to regexes `HTTP_HEADER_NAME` and `HTTP_HEADER_VALUE` to enable strict header validation. By default, this is true, and HTTP header validations are [RFC-compliant](https://tools.ietf.org/html/rfc7230#section-3). Setting to false will enable looser validations that only disallow `\r\n\0` characters, which can be used to bypass header matching rules. ```proto message MyString { // The field `value` must have be a valid HTTP headers, but not enforced with strict rules. string value = 1 [(buf.validate.field).string.strict = false]; } ```optional bool strict = 25;- Returns:
- This builder for chaining.
-
-