/* * Copyright 2019 The Grafeas Authors. All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ // Generated by the protocol buffer compiler. DO NOT EDIT! // source: grafeas/v1/provenance.proto package io.grafeas.v1; /** * * *
 * Artifact describes a build product.
 * 
* * Protobuf type {@code grafeas.v1.Artifact} */ public final class Artifact extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:grafeas.v1.Artifact) ArtifactOrBuilder { private static final long serialVersionUID = 0L; // Use Artifact.newBuilder() to construct. private Artifact(com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } private Artifact() { checksum_ = ""; id_ = ""; names_ = com.google.protobuf.LazyStringArrayList.EMPTY; } @java.lang.Override @SuppressWarnings({"unused"}) protected java.lang.Object newInstance(UnusedPrivateParameter unused) { return new Artifact(); } @java.lang.Override public final com.google.protobuf.UnknownFieldSet getUnknownFields() { return this.unknownFields; } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return io.grafeas.v1.Provenance.internal_static_grafeas_v1_Artifact_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return io.grafeas.v1.Provenance.internal_static_grafeas_v1_Artifact_fieldAccessorTable .ensureFieldAccessorsInitialized( io.grafeas.v1.Artifact.class, io.grafeas.v1.Artifact.Builder.class); } public static final int CHECKSUM_FIELD_NUMBER = 1; @SuppressWarnings("serial") private volatile java.lang.Object checksum_ = ""; /** * * *
   * Hash or checksum value of a binary, or Docker Registry 2.0 digest of a
   * container.
   * 
* * string checksum = 1; * * @return The checksum. */ @java.lang.Override public java.lang.String getChecksum() { java.lang.Object ref = checksum_; if (ref instanceof java.lang.String) { return (java.lang.String) ref; } else { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); checksum_ = s; return s; } } /** * * *
   * Hash or checksum value of a binary, or Docker Registry 2.0 digest of a
   * container.
   * 
* * string checksum = 1; * * @return The bytes for checksum. */ @java.lang.Override public com.google.protobuf.ByteString getChecksumBytes() { java.lang.Object ref = checksum_; if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); checksum_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } public static final int ID_FIELD_NUMBER = 2; @SuppressWarnings("serial") private volatile java.lang.Object id_ = ""; /** * * *
   * Artifact ID, if any; for container images, this will be a URL by digest
   * like `gcr.io/projectID/imagename@sha256:123456`.
   * 
* * string id = 2; * * @return The id. */ @java.lang.Override public java.lang.String getId() { java.lang.Object ref = id_; if (ref instanceof java.lang.String) { return (java.lang.String) ref; } else { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); id_ = s; return s; } } /** * * *
   * Artifact ID, if any; for container images, this will be a URL by digest
   * like `gcr.io/projectID/imagename@sha256:123456`.
   * 
* * string id = 2; * * @return The bytes for id. */ @java.lang.Override public com.google.protobuf.ByteString getIdBytes() { java.lang.Object ref = id_; if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); id_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } public static final int NAMES_FIELD_NUMBER = 3; @SuppressWarnings("serial") private com.google.protobuf.LazyStringList names_; /** * * *
   * Related artifact names. This may be the path to a binary or jar file, or in
   * the case of a container build, the name used to push the container image to
   * Google Container Registry, as presented to `docker push`. Note that a
   * single Artifact ID can have multiple names, for example if two tags are
   * applied to one image.
   * 
* * repeated string names = 3; * * @return A list containing the names. */ public com.google.protobuf.ProtocolStringList getNamesList() { return names_; } /** * * *
   * Related artifact names. This may be the path to a binary or jar file, or in
   * the case of a container build, the name used to push the container image to
   * Google Container Registry, as presented to `docker push`. Note that a
   * single Artifact ID can have multiple names, for example if two tags are
   * applied to one image.
   * 
* * repeated string names = 3; * * @return The count of names. */ public int getNamesCount() { return names_.size(); } /** * * *
   * Related artifact names. This may be the path to a binary or jar file, or in
   * the case of a container build, the name used to push the container image to
   * Google Container Registry, as presented to `docker push`. Note that a
   * single Artifact ID can have multiple names, for example if two tags are
   * applied to one image.
   * 
* * repeated string names = 3; * * @param index The index of the element to return. * @return The names at the given index. */ public java.lang.String getNames(int index) { return names_.get(index); } /** * * *
   * Related artifact names. This may be the path to a binary or jar file, or in
   * the case of a container build, the name used to push the container image to
   * Google Container Registry, as presented to `docker push`. Note that a
   * single Artifact ID can have multiple names, for example if two tags are
   * applied to one image.
   * 
* * repeated string names = 3; * * @param index The index of the value to return. * @return The bytes of the names at the given index. */ public com.google.protobuf.ByteString getNamesBytes(int index) { return names_.getByteString(index); } private byte memoizedIsInitialized = -1; @java.lang.Override public final boolean isInitialized() { byte isInitialized = memoizedIsInitialized; if (isInitialized == 1) return true; if (isInitialized == 0) return false; memoizedIsInitialized = 1; return true; } @java.lang.Override public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(checksum_)) { com.google.protobuf.GeneratedMessageV3.writeString(output, 1, checksum_); } if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(id_)) { com.google.protobuf.GeneratedMessageV3.writeString(output, 2, id_); } for (int i = 0; i < names_.size(); i++) { com.google.protobuf.GeneratedMessageV3.writeString(output, 3, names_.getRaw(i)); } getUnknownFields().writeTo(output); } @java.lang.Override public int getSerializedSize() { int size = memoizedSize; if (size != -1) return size; size = 0; if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(checksum_)) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, checksum_); } if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(id_)) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, id_); } { int dataSize = 0; for (int i = 0; i < names_.size(); i++) { dataSize += computeStringSizeNoTag(names_.getRaw(i)); } size += dataSize; size += 1 * getNamesList().size(); } size += getUnknownFields().getSerializedSize(); memoizedSize = size; return size; } @java.lang.Override public boolean equals(final java.lang.Object obj) { if (obj == this) { return true; } if (!(obj instanceof io.grafeas.v1.Artifact)) { return super.equals(obj); } io.grafeas.v1.Artifact other = (io.grafeas.v1.Artifact) obj; if (!getChecksum().equals(other.getChecksum())) return false; if (!getId().equals(other.getId())) return false; if (!getNamesList().equals(other.getNamesList())) return false; if (!getUnknownFields().equals(other.getUnknownFields())) return false; return true; } @java.lang.Override public int hashCode() { if (memoizedHashCode != 0) { return memoizedHashCode; } int hash = 41; hash = (19 * hash) + getDescriptor().hashCode(); hash = (37 * hash) + CHECKSUM_FIELD_NUMBER; hash = (53 * hash) + getChecksum().hashCode(); hash = (37 * hash) + ID_FIELD_NUMBER; hash = (53 * hash) + getId().hashCode(); if (getNamesCount() > 0) { hash = (37 * hash) + NAMES_FIELD_NUMBER; hash = (53 * hash) + getNamesList().hashCode(); } hash = (29 * hash) + getUnknownFields().hashCode(); memoizedHashCode = hash; return hash; } public static io.grafeas.v1.Artifact parseFrom(java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static io.grafeas.v1.Artifact parseFrom( java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static io.grafeas.v1.Artifact parseFrom(com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static io.grafeas.v1.Artifact parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static io.grafeas.v1.Artifact parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static io.grafeas.v1.Artifact parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static io.grafeas.v1.Artifact parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); } public static io.grafeas.v1.Artifact parseFrom( java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3.parseWithIOException( PARSER, input, extensionRegistry); } public static io.grafeas.v1.Artifact parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); } public static io.grafeas.v1.Artifact parseDelimitedFrom( java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException( PARSER, input, extensionRegistry); } public static io.grafeas.v1.Artifact parseFrom(com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); } public static io.grafeas.v1.Artifact parseFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3.parseWithIOException( PARSER, input, extensionRegistry); } @java.lang.Override public Builder newBuilderForType() { return newBuilder(); } public static Builder newBuilder() { return DEFAULT_INSTANCE.toBuilder(); } public static Builder newBuilder(io.grafeas.v1.Artifact prototype) { return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); } @java.lang.Override public Builder toBuilder() { return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); } @java.lang.Override protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { Builder builder = new Builder(parent); return builder; } /** * * *
   * Artifact describes a build product.
   * 
* * Protobuf type {@code grafeas.v1.Artifact} */ public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:grafeas.v1.Artifact) io.grafeas.v1.ArtifactOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return io.grafeas.v1.Provenance.internal_static_grafeas_v1_Artifact_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return io.grafeas.v1.Provenance.internal_static_grafeas_v1_Artifact_fieldAccessorTable .ensureFieldAccessorsInitialized( io.grafeas.v1.Artifact.class, io.grafeas.v1.Artifact.Builder.class); } // Construct using io.grafeas.v1.Artifact.newBuilder() private Builder() {} private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); } @java.lang.Override public Builder clear() { super.clear(); bitField0_ = 0; checksum_ = ""; id_ = ""; names_ = com.google.protobuf.LazyStringArrayList.EMPTY; bitField0_ = (bitField0_ & ~0x00000004); return this; } @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return io.grafeas.v1.Provenance.internal_static_grafeas_v1_Artifact_descriptor; } @java.lang.Override public io.grafeas.v1.Artifact getDefaultInstanceForType() { return io.grafeas.v1.Artifact.getDefaultInstance(); } @java.lang.Override public io.grafeas.v1.Artifact build() { io.grafeas.v1.Artifact result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } @java.lang.Override public io.grafeas.v1.Artifact buildPartial() { io.grafeas.v1.Artifact result = new io.grafeas.v1.Artifact(this); buildPartialRepeatedFields(result); if (bitField0_ != 0) { buildPartial0(result); } onBuilt(); return result; } private void buildPartialRepeatedFields(io.grafeas.v1.Artifact result) { if (((bitField0_ & 0x00000004) != 0)) { names_ = names_.getUnmodifiableView(); bitField0_ = (bitField0_ & ~0x00000004); } result.names_ = names_; } private void buildPartial0(io.grafeas.v1.Artifact result) { int from_bitField0_ = bitField0_; if (((from_bitField0_ & 0x00000001) != 0)) { result.checksum_ = checksum_; } if (((from_bitField0_ & 0x00000002) != 0)) { result.id_ = id_; } } @java.lang.Override public Builder clone() { return super.clone(); } @java.lang.Override public Builder setField( com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { return super.setField(field, value); } @java.lang.Override public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) { return super.clearField(field); } @java.lang.Override public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) { return super.clearOneof(oneof); } @java.lang.Override public Builder setRepeatedField( com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) { return super.setRepeatedField(field, index, value); } @java.lang.Override public Builder addRepeatedField( com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { return super.addRepeatedField(field, value); } @java.lang.Override public Builder mergeFrom(com.google.protobuf.Message other) { if (other instanceof io.grafeas.v1.Artifact) { return mergeFrom((io.grafeas.v1.Artifact) other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(io.grafeas.v1.Artifact other) { if (other == io.grafeas.v1.Artifact.getDefaultInstance()) return this; if (!other.getChecksum().isEmpty()) { checksum_ = other.checksum_; bitField0_ |= 0x00000001; onChanged(); } if (!other.getId().isEmpty()) { id_ = other.id_; bitField0_ |= 0x00000002; onChanged(); } if (!other.names_.isEmpty()) { if (names_.isEmpty()) { names_ = other.names_; bitField0_ = (bitField0_ & ~0x00000004); } else { ensureNamesIsMutable(); names_.addAll(other.names_); } onChanged(); } this.mergeUnknownFields(other.getUnknownFields()); onChanged(); return this; } @java.lang.Override public final boolean isInitialized() { return true; } @java.lang.Override public Builder mergeFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { if (extensionRegistry == null) { throw new java.lang.NullPointerException(); } try { boolean done = false; while (!done) { int tag = input.readTag(); switch (tag) { case 0: done = true; break; case 10: { checksum_ = input.readStringRequireUtf8(); bitField0_ |= 0x00000001; break; } // case 10 case 18: { id_ = input.readStringRequireUtf8(); bitField0_ |= 0x00000002; break; } // case 18 case 26: { java.lang.String s = input.readStringRequireUtf8(); ensureNamesIsMutable(); names_.add(s); break; } // case 26 default: { if (!super.parseUnknownField(input, extensionRegistry, tag)) { done = true; // was an endgroup tag } break; } // default: } // switch (tag) } // while (!done) } catch (com.google.protobuf.InvalidProtocolBufferException e) { throw e.unwrapIOException(); } finally { onChanged(); } // finally return this; } private int bitField0_; private java.lang.Object checksum_ = ""; /** * * *
     * Hash or checksum value of a binary, or Docker Registry 2.0 digest of a
     * container.
     * 
* * string checksum = 1; * * @return The checksum. */ public java.lang.String getChecksum() { java.lang.Object ref = checksum_; if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); checksum_ = s; return s; } else { return (java.lang.String) ref; } } /** * * *
     * Hash or checksum value of a binary, or Docker Registry 2.0 digest of a
     * container.
     * 
* * string checksum = 1; * * @return The bytes for checksum. */ public com.google.protobuf.ByteString getChecksumBytes() { java.lang.Object ref = checksum_; if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); checksum_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } /** * * *
     * Hash or checksum value of a binary, or Docker Registry 2.0 digest of a
     * container.
     * 
* * string checksum = 1; * * @param value The checksum to set. * @return This builder for chaining. */ public Builder setChecksum(java.lang.String value) { if (value == null) { throw new NullPointerException(); } checksum_ = value; bitField0_ |= 0x00000001; onChanged(); return this; } /** * * *
     * Hash or checksum value of a binary, or Docker Registry 2.0 digest of a
     * container.
     * 
* * string checksum = 1; * * @return This builder for chaining. */ public Builder clearChecksum() { checksum_ = getDefaultInstance().getChecksum(); bitField0_ = (bitField0_ & ~0x00000001); onChanged(); return this; } /** * * *
     * Hash or checksum value of a binary, or Docker Registry 2.0 digest of a
     * container.
     * 
* * string checksum = 1; * * @param value The bytes for checksum to set. * @return This builder for chaining. */ public Builder setChecksumBytes(com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); checksum_ = value; bitField0_ |= 0x00000001; onChanged(); return this; } private java.lang.Object id_ = ""; /** * * *
     * Artifact ID, if any; for container images, this will be a URL by digest
     * like `gcr.io/projectID/imagename@sha256:123456`.
     * 
* * string id = 2; * * @return The id. */ public java.lang.String getId() { java.lang.Object ref = id_; if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); id_ = s; return s; } else { return (java.lang.String) ref; } } /** * * *
     * Artifact ID, if any; for container images, this will be a URL by digest
     * like `gcr.io/projectID/imagename@sha256:123456`.
     * 
* * string id = 2; * * @return The bytes for id. */ public com.google.protobuf.ByteString getIdBytes() { java.lang.Object ref = id_; if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); id_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } /** * * *
     * Artifact ID, if any; for container images, this will be a URL by digest
     * like `gcr.io/projectID/imagename@sha256:123456`.
     * 
* * string id = 2; * * @param value The id to set. * @return This builder for chaining. */ public Builder setId(java.lang.String value) { if (value == null) { throw new NullPointerException(); } id_ = value; bitField0_ |= 0x00000002; onChanged(); return this; } /** * * *
     * Artifact ID, if any; for container images, this will be a URL by digest
     * like `gcr.io/projectID/imagename@sha256:123456`.
     * 
* * string id = 2; * * @return This builder for chaining. */ public Builder clearId() { id_ = getDefaultInstance().getId(); bitField0_ = (bitField0_ & ~0x00000002); onChanged(); return this; } /** * * *
     * Artifact ID, if any; for container images, this will be a URL by digest
     * like `gcr.io/projectID/imagename@sha256:123456`.
     * 
* * string id = 2; * * @param value The bytes for id to set. * @return This builder for chaining. */ public Builder setIdBytes(com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); id_ = value; bitField0_ |= 0x00000002; onChanged(); return this; } private com.google.protobuf.LazyStringList names_ = com.google.protobuf.LazyStringArrayList.EMPTY; private void ensureNamesIsMutable() { if (!((bitField0_ & 0x00000004) != 0)) { names_ = new com.google.protobuf.LazyStringArrayList(names_); bitField0_ |= 0x00000004; } } /** * * *
     * Related artifact names. This may be the path to a binary or jar file, or in
     * the case of a container build, the name used to push the container image to
     * Google Container Registry, as presented to `docker push`. Note that a
     * single Artifact ID can have multiple names, for example if two tags are
     * applied to one image.
     * 
* * repeated string names = 3; * * @return A list containing the names. */ public com.google.protobuf.ProtocolStringList getNamesList() { return names_.getUnmodifiableView(); } /** * * *
     * Related artifact names. This may be the path to a binary or jar file, or in
     * the case of a container build, the name used to push the container image to
     * Google Container Registry, as presented to `docker push`. Note that a
     * single Artifact ID can have multiple names, for example if two tags are
     * applied to one image.
     * 
* * repeated string names = 3; * * @return The count of names. */ public int getNamesCount() { return names_.size(); } /** * * *
     * Related artifact names. This may be the path to a binary or jar file, or in
     * the case of a container build, the name used to push the container image to
     * Google Container Registry, as presented to `docker push`. Note that a
     * single Artifact ID can have multiple names, for example if two tags are
     * applied to one image.
     * 
* * repeated string names = 3; * * @param index The index of the element to return. * @return The names at the given index. */ public java.lang.String getNames(int index) { return names_.get(index); } /** * * *
     * Related artifact names. This may be the path to a binary or jar file, or in
     * the case of a container build, the name used to push the container image to
     * Google Container Registry, as presented to `docker push`. Note that a
     * single Artifact ID can have multiple names, for example if two tags are
     * applied to one image.
     * 
* * repeated string names = 3; * * @param index The index of the value to return. * @return The bytes of the names at the given index. */ public com.google.protobuf.ByteString getNamesBytes(int index) { return names_.getByteString(index); } /** * * *
     * Related artifact names. This may be the path to a binary or jar file, or in
     * the case of a container build, the name used to push the container image to
     * Google Container Registry, as presented to `docker push`. Note that a
     * single Artifact ID can have multiple names, for example if two tags are
     * applied to one image.
     * 
* * repeated string names = 3; * * @param index The index to set the value at. * @param value The names to set. * @return This builder for chaining. */ public Builder setNames(int index, java.lang.String value) { if (value == null) { throw new NullPointerException(); } ensureNamesIsMutable(); names_.set(index, value); onChanged(); return this; } /** * * *
     * Related artifact names. This may be the path to a binary or jar file, or in
     * the case of a container build, the name used to push the container image to
     * Google Container Registry, as presented to `docker push`. Note that a
     * single Artifact ID can have multiple names, for example if two tags are
     * applied to one image.
     * 
* * repeated string names = 3; * * @param value The names to add. * @return This builder for chaining. */ public Builder addNames(java.lang.String value) { if (value == null) { throw new NullPointerException(); } ensureNamesIsMutable(); names_.add(value); onChanged(); return this; } /** * * *
     * Related artifact names. This may be the path to a binary or jar file, or in
     * the case of a container build, the name used to push the container image to
     * Google Container Registry, as presented to `docker push`. Note that a
     * single Artifact ID can have multiple names, for example if two tags are
     * applied to one image.
     * 
* * repeated string names = 3; * * @param values The names to add. * @return This builder for chaining. */ public Builder addAllNames(java.lang.Iterable values) { ensureNamesIsMutable(); com.google.protobuf.AbstractMessageLite.Builder.addAll(values, names_); onChanged(); return this; } /** * * *
     * Related artifact names. This may be the path to a binary or jar file, or in
     * the case of a container build, the name used to push the container image to
     * Google Container Registry, as presented to `docker push`. Note that a
     * single Artifact ID can have multiple names, for example if two tags are
     * applied to one image.
     * 
* * repeated string names = 3; * * @return This builder for chaining. */ public Builder clearNames() { names_ = com.google.protobuf.LazyStringArrayList.EMPTY; bitField0_ = (bitField0_ & ~0x00000004); onChanged(); return this; } /** * * *
     * Related artifact names. This may be the path to a binary or jar file, or in
     * the case of a container build, the name used to push the container image to
     * Google Container Registry, as presented to `docker push`. Note that a
     * single Artifact ID can have multiple names, for example if two tags are
     * applied to one image.
     * 
* * repeated string names = 3; * * @param value The bytes of the names to add. * @return This builder for chaining. */ public Builder addNamesBytes(com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); ensureNamesIsMutable(); names_.add(value); onChanged(); return this; } @java.lang.Override public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) { return super.setUnknownFields(unknownFields); } @java.lang.Override public final Builder mergeUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { return super.mergeUnknownFields(unknownFields); } // @@protoc_insertion_point(builder_scope:grafeas.v1.Artifact) } // @@protoc_insertion_point(class_scope:grafeas.v1.Artifact) private static final io.grafeas.v1.Artifact DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new io.grafeas.v1.Artifact(); } public static io.grafeas.v1.Artifact getDefaultInstance() { return DEFAULT_INSTANCE; } private static final com.google.protobuf.Parser PARSER = new com.google.protobuf.AbstractParser() { @java.lang.Override public Artifact parsePartialFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { Builder builder = newBuilder(); try { builder.mergeFrom(input, extensionRegistry); } catch (com.google.protobuf.InvalidProtocolBufferException e) { throw e.setUnfinishedMessage(builder.buildPartial()); } catch (com.google.protobuf.UninitializedMessageException e) { throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); } catch (java.io.IOException e) { throw new com.google.protobuf.InvalidProtocolBufferException(e) .setUnfinishedMessage(builder.buildPartial()); } return builder.buildPartial(); } }; public static com.google.protobuf.Parser parser() { return PARSER; } @java.lang.Override public com.google.protobuf.Parser getParserForType() { return PARSER; } @java.lang.Override public io.grafeas.v1.Artifact getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }