Class ValueMatcher.Builder

  • All Implemented Interfaces:
    ValueMatcherOrBuilder, com.google.protobuf.Message.Builder, com.google.protobuf.MessageLite.Builder, com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder, Cloneable
    Enclosing class:
    ValueMatcher

    public static final class ValueMatcher.Builder
    extends com.google.protobuf.GeneratedMessageV3.Builder<ValueMatcher.Builder>
    implements ValueMatcherOrBuilder
     Contains various matching options for values for a GCP resource field.
     
    Protobuf type google.cloud.recommender.v1beta1.ValueMatcher
    • Method Detail

      • getDescriptor

        public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
      • internalGetFieldAccessorTable

        protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
        Specified by:
        internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3.Builder<ValueMatcher.Builder>
      • clear

        public ValueMatcher.Builder clear()
        Specified by:
        clear in interface com.google.protobuf.Message.Builder
        Specified by:
        clear in interface com.google.protobuf.MessageLite.Builder
        Overrides:
        clear in class com.google.protobuf.GeneratedMessageV3.Builder<ValueMatcher.Builder>
      • getDescriptorForType

        public com.google.protobuf.Descriptors.Descriptor getDescriptorForType()
        Specified by:
        getDescriptorForType in interface com.google.protobuf.Message.Builder
        Specified by:
        getDescriptorForType in interface com.google.protobuf.MessageOrBuilder
        Overrides:
        getDescriptorForType in class com.google.protobuf.GeneratedMessageV3.Builder<ValueMatcher.Builder>
      • getDefaultInstanceForType

        public ValueMatcher getDefaultInstanceForType()
        Specified by:
        getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
        Specified by:
        getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      • build

        public ValueMatcher build()
        Specified by:
        build in interface com.google.protobuf.Message.Builder
        Specified by:
        build in interface com.google.protobuf.MessageLite.Builder
      • buildPartial

        public ValueMatcher buildPartial()
        Specified by:
        buildPartial in interface com.google.protobuf.Message.Builder
        Specified by:
        buildPartial in interface com.google.protobuf.MessageLite.Builder
      • clone

        public ValueMatcher.Builder clone()
        Specified by:
        clone in interface com.google.protobuf.Message.Builder
        Specified by:
        clone in interface com.google.protobuf.MessageLite.Builder
        Overrides:
        clone in class com.google.protobuf.GeneratedMessageV3.Builder<ValueMatcher.Builder>
      • setField

        public ValueMatcher.Builder setField​(com.google.protobuf.Descriptors.FieldDescriptor field,
                                             Object value)
        Specified by:
        setField in interface com.google.protobuf.Message.Builder
        Overrides:
        setField in class com.google.protobuf.GeneratedMessageV3.Builder<ValueMatcher.Builder>
      • clearField

        public ValueMatcher.Builder clearField​(com.google.protobuf.Descriptors.FieldDescriptor field)
        Specified by:
        clearField in interface com.google.protobuf.Message.Builder
        Overrides:
        clearField in class com.google.protobuf.GeneratedMessageV3.Builder<ValueMatcher.Builder>
      • clearOneof

        public ValueMatcher.Builder clearOneof​(com.google.protobuf.Descriptors.OneofDescriptor oneof)
        Specified by:
        clearOneof in interface com.google.protobuf.Message.Builder
        Overrides:
        clearOneof in class com.google.protobuf.GeneratedMessageV3.Builder<ValueMatcher.Builder>
      • setRepeatedField

        public ValueMatcher.Builder setRepeatedField​(com.google.protobuf.Descriptors.FieldDescriptor field,
                                                     int index,
                                                     Object value)
        Specified by:
        setRepeatedField in interface com.google.protobuf.Message.Builder
        Overrides:
        setRepeatedField in class com.google.protobuf.GeneratedMessageV3.Builder<ValueMatcher.Builder>
      • addRepeatedField

        public ValueMatcher.Builder addRepeatedField​(com.google.protobuf.Descriptors.FieldDescriptor field,
                                                     Object value)
        Specified by:
        addRepeatedField in interface com.google.protobuf.Message.Builder
        Overrides:
        addRepeatedField in class com.google.protobuf.GeneratedMessageV3.Builder<ValueMatcher.Builder>
      • mergeFrom

        public ValueMatcher.Builder mergeFrom​(com.google.protobuf.Message other)
        Specified by:
        mergeFrom in interface com.google.protobuf.Message.Builder
        Overrides:
        mergeFrom in class com.google.protobuf.AbstractMessage.Builder<ValueMatcher.Builder>
      • isInitialized

        public final boolean isInitialized()
        Specified by:
        isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
        Overrides:
        isInitialized in class com.google.protobuf.GeneratedMessageV3.Builder<ValueMatcher.Builder>
      • mergeFrom

        public ValueMatcher.Builder mergeFrom​(com.google.protobuf.CodedInputStream input,
                                              com.google.protobuf.ExtensionRegistryLite extensionRegistry)
                                       throws IOException
        Specified by:
        mergeFrom in interface com.google.protobuf.Message.Builder
        Specified by:
        mergeFrom in interface com.google.protobuf.MessageLite.Builder
        Overrides:
        mergeFrom in class com.google.protobuf.AbstractMessage.Builder<ValueMatcher.Builder>
        Throws:
        IOException
      • hasMatchesPattern

        public boolean hasMatchesPattern()
         To be used for full regex matching. The regular expression is using the
         Google RE2 syntax (https://github.com/google/re2/wiki/Syntax), so to be
         used with RE2::FullMatch
         
        string matches_pattern = 1;
        Specified by:
        hasMatchesPattern in interface ValueMatcherOrBuilder
        Returns:
        Whether the matchesPattern field is set.
      • getMatchesPattern

        public String getMatchesPattern()
         To be used for full regex matching. The regular expression is using the
         Google RE2 syntax (https://github.com/google/re2/wiki/Syntax), so to be
         used with RE2::FullMatch
         
        string matches_pattern = 1;
        Specified by:
        getMatchesPattern in interface ValueMatcherOrBuilder
        Returns:
        The matchesPattern.
      • getMatchesPatternBytes

        public com.google.protobuf.ByteString getMatchesPatternBytes()
         To be used for full regex matching. The regular expression is using the
         Google RE2 syntax (https://github.com/google/re2/wiki/Syntax), so to be
         used with RE2::FullMatch
         
        string matches_pattern = 1;
        Specified by:
        getMatchesPatternBytes in interface ValueMatcherOrBuilder
        Returns:
        The bytes for matchesPattern.
      • setMatchesPattern

        public ValueMatcher.Builder setMatchesPattern​(String value)
         To be used for full regex matching. The regular expression is using the
         Google RE2 syntax (https://github.com/google/re2/wiki/Syntax), so to be
         used with RE2::FullMatch
         
        string matches_pattern = 1;
        Parameters:
        value - The matchesPattern to set.
        Returns:
        This builder for chaining.
      • clearMatchesPattern

        public ValueMatcher.Builder clearMatchesPattern()
         To be used for full regex matching. The regular expression is using the
         Google RE2 syntax (https://github.com/google/re2/wiki/Syntax), so to be
         used with RE2::FullMatch
         
        string matches_pattern = 1;
        Returns:
        This builder for chaining.
      • setMatchesPatternBytes

        public ValueMatcher.Builder setMatchesPatternBytes​(com.google.protobuf.ByteString value)
         To be used for full regex matching. The regular expression is using the
         Google RE2 syntax (https://github.com/google/re2/wiki/Syntax), so to be
         used with RE2::FullMatch
         
        string matches_pattern = 1;
        Parameters:
        value - The bytes for matchesPattern to set.
        Returns:
        This builder for chaining.
      • setUnknownFields

        public final ValueMatcher.Builder setUnknownFields​(com.google.protobuf.UnknownFieldSet unknownFields)
        Specified by:
        setUnknownFields in interface com.google.protobuf.Message.Builder
        Overrides:
        setUnknownFields in class com.google.protobuf.GeneratedMessageV3.Builder<ValueMatcher.Builder>
      • mergeUnknownFields

        public final ValueMatcher.Builder mergeUnknownFields​(com.google.protobuf.UnknownFieldSet unknownFields)
        Specified by:
        mergeUnknownFields in interface com.google.protobuf.Message.Builder
        Overrides:
        mergeUnknownFields in class com.google.protobuf.GeneratedMessageV3.Builder<ValueMatcher.Builder>