All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.tensorflow.framework.DebuggedSourceFile Maven / Gradle / Ivy

The newest version!
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: tensorflow/core/protobuf/debug.proto

package org.tensorflow.framework;

/**
 * Protobuf type {@code tensorflow.DebuggedSourceFile}
 */
public final class DebuggedSourceFile extends
    org.nd4j.shade.protobuf.GeneratedMessageV3 implements
    // @@protoc_insertion_point(message_implements:tensorflow.DebuggedSourceFile)
    DebuggedSourceFileOrBuilder {
private static final long serialVersionUID = 0L;
  // Use DebuggedSourceFile.newBuilder() to construct.
  private DebuggedSourceFile(org.nd4j.shade.protobuf.GeneratedMessageV3.Builder builder) {
    super(builder);
  }
  private DebuggedSourceFile() {
    host_ = "";
    filePath_ = "";
    lines_ = org.nd4j.shade.protobuf.LazyStringArrayList.EMPTY;
  }

  @java.lang.Override
  @SuppressWarnings({"unused"})
  protected java.lang.Object newInstance(
      UnusedPrivateParameter unused) {
    return new DebuggedSourceFile();
  }

  @java.lang.Override
  public final org.nd4j.shade.protobuf.UnknownFieldSet
  getUnknownFields() {
    return this.unknownFields;
  }
  private DebuggedSourceFile(
      org.nd4j.shade.protobuf.CodedInputStream input,
      org.nd4j.shade.protobuf.ExtensionRegistryLite extensionRegistry)
      throws org.nd4j.shade.protobuf.InvalidProtocolBufferException {
    this();
    if (extensionRegistry == null) {
      throw new java.lang.NullPointerException();
    }
    int mutable_bitField0_ = 0;
    org.nd4j.shade.protobuf.UnknownFieldSet.Builder unknownFields =
        org.nd4j.shade.protobuf.UnknownFieldSet.newBuilder();
    try {
      boolean done = false;
      while (!done) {
        int tag = input.readTag();
        switch (tag) {
          case 0:
            done = true;
            break;
          case 10: {
            java.lang.String s = input.readStringRequireUtf8();

            host_ = s;
            break;
          }
          case 18: {
            java.lang.String s = input.readStringRequireUtf8();

            filePath_ = s;
            break;
          }
          case 24: {

            lastModified_ = input.readInt64();
            break;
          }
          case 32: {

            bytes_ = input.readInt64();
            break;
          }
          case 42: {
            java.lang.String s = input.readStringRequireUtf8();
            if (!((mutable_bitField0_ & 0x00000001) != 0)) {
              lines_ = new org.nd4j.shade.protobuf.LazyStringArrayList();
              mutable_bitField0_ |= 0x00000001;
            }
            lines_.add(s);
            break;
          }
          default: {
            if (!parseUnknownField(
                input, unknownFields, extensionRegistry, tag)) {
              done = true;
            }
            break;
          }
        }
      }
    } catch (org.nd4j.shade.protobuf.InvalidProtocolBufferException e) {
      throw e.setUnfinishedMessage(this);
    } catch (org.nd4j.shade.protobuf.UninitializedMessageException e) {
      throw e.asInvalidProtocolBufferException().setUnfinishedMessage(this);
    } catch (java.io.IOException e) {
      throw new org.nd4j.shade.protobuf.InvalidProtocolBufferException(
          e).setUnfinishedMessage(this);
    } finally {
      if (((mutable_bitField0_ & 0x00000001) != 0)) {
        lines_ = lines_.getUnmodifiableView();
      }
      this.unknownFields = unknownFields.build();
      makeExtensionsImmutable();
    }
  }
  public static final org.nd4j.shade.protobuf.Descriptors.Descriptor
      getDescriptor() {
    return org.tensorflow.framework.DebugProtos.internal_static_tensorflow_DebuggedSourceFile_descriptor;
  }

  @java.lang.Override
  protected org.nd4j.shade.protobuf.GeneratedMessageV3.FieldAccessorTable
      internalGetFieldAccessorTable() {
    return org.tensorflow.framework.DebugProtos.internal_static_tensorflow_DebuggedSourceFile_fieldAccessorTable
        .ensureFieldAccessorsInitialized(
            org.tensorflow.framework.DebuggedSourceFile.class, org.tensorflow.framework.DebuggedSourceFile.Builder.class);
  }

  public static final int HOST_FIELD_NUMBER = 1;
  private volatile java.lang.Object host_;
  /**
   * 
   * The host name on which a source code file is located.
   * 
* * string host = 1; * @return The host. */ @java.lang.Override public java.lang.String getHost() { java.lang.Object ref = host_; if (ref instanceof java.lang.String) { return (java.lang.String) ref; } else { org.nd4j.shade.protobuf.ByteString bs = (org.nd4j.shade.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); host_ = s; return s; } } /** *
   * The host name on which a source code file is located.
   * 
* * string host = 1; * @return The bytes for host. */ @java.lang.Override public org.nd4j.shade.protobuf.ByteString getHostBytes() { java.lang.Object ref = host_; if (ref instanceof java.lang.String) { org.nd4j.shade.protobuf.ByteString b = org.nd4j.shade.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); host_ = b; return b; } else { return (org.nd4j.shade.protobuf.ByteString) ref; } } public static final int FILE_PATH_FIELD_NUMBER = 2; private volatile java.lang.Object filePath_; /** *
   * Path to the source code file.
   * 
* * string file_path = 2; * @return The filePath. */ @java.lang.Override public java.lang.String getFilePath() { java.lang.Object ref = filePath_; if (ref instanceof java.lang.String) { return (java.lang.String) ref; } else { org.nd4j.shade.protobuf.ByteString bs = (org.nd4j.shade.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); filePath_ = s; return s; } } /** *
   * Path to the source code file.
   * 
* * string file_path = 2; * @return The bytes for filePath. */ @java.lang.Override public org.nd4j.shade.protobuf.ByteString getFilePathBytes() { java.lang.Object ref = filePath_; if (ref instanceof java.lang.String) { org.nd4j.shade.protobuf.ByteString b = org.nd4j.shade.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); filePath_ = b; return b; } else { return (org.nd4j.shade.protobuf.ByteString) ref; } } public static final int LAST_MODIFIED_FIELD_NUMBER = 3; private long lastModified_; /** *
   * The timestamp at which the source code file is last modified.
   * 
* * int64 last_modified = 3; * @return The lastModified. */ @java.lang.Override public long getLastModified() { return lastModified_; } public static final int BYTES_FIELD_NUMBER = 4; private long bytes_; /** *
   * Byte size of the file.
   * 
* * int64 bytes = 4; * @return The bytes. */ @java.lang.Override public long getBytes() { return bytes_; } public static final int LINES_FIELD_NUMBER = 5; private org.nd4j.shade.protobuf.LazyStringList lines_; /** *
   * Line-by-line content of the source code file.
   * 
* * repeated string lines = 5; * @return A list containing the lines. */ public org.nd4j.shade.protobuf.ProtocolStringList getLinesList() { return lines_; } /** *
   * Line-by-line content of the source code file.
   * 
* * repeated string lines = 5; * @return The count of lines. */ public int getLinesCount() { return lines_.size(); } /** *
   * Line-by-line content of the source code file.
   * 
* * repeated string lines = 5; * @param index The index of the element to return. * @return The lines at the given index. */ public java.lang.String getLines(int index) { return lines_.get(index); } /** *
   * Line-by-line content of the source code file.
   * 
* * repeated string lines = 5; * @param index The index of the value to return. * @return The bytes of the lines at the given index. */ public org.nd4j.shade.protobuf.ByteString getLinesBytes(int index) { return lines_.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(org.nd4j.shade.protobuf.CodedOutputStream output) throws java.io.IOException { if (!org.nd4j.shade.protobuf.GeneratedMessageV3.isStringEmpty(host_)) { org.nd4j.shade.protobuf.GeneratedMessageV3.writeString(output, 1, host_); } if (!org.nd4j.shade.protobuf.GeneratedMessageV3.isStringEmpty(filePath_)) { org.nd4j.shade.protobuf.GeneratedMessageV3.writeString(output, 2, filePath_); } if (lastModified_ != 0L) { output.writeInt64(3, lastModified_); } if (bytes_ != 0L) { output.writeInt64(4, bytes_); } for (int i = 0; i < lines_.size(); i++) { org.nd4j.shade.protobuf.GeneratedMessageV3.writeString(output, 5, lines_.getRaw(i)); } unknownFields.writeTo(output); } @java.lang.Override public int getSerializedSize() { int size = memoizedSize; if (size != -1) return size; size = 0; if (!org.nd4j.shade.protobuf.GeneratedMessageV3.isStringEmpty(host_)) { size += org.nd4j.shade.protobuf.GeneratedMessageV3.computeStringSize(1, host_); } if (!org.nd4j.shade.protobuf.GeneratedMessageV3.isStringEmpty(filePath_)) { size += org.nd4j.shade.protobuf.GeneratedMessageV3.computeStringSize(2, filePath_); } if (lastModified_ != 0L) { size += org.nd4j.shade.protobuf.CodedOutputStream .computeInt64Size(3, lastModified_); } if (bytes_ != 0L) { size += org.nd4j.shade.protobuf.CodedOutputStream .computeInt64Size(4, bytes_); } { int dataSize = 0; for (int i = 0; i < lines_.size(); i++) { dataSize += computeStringSizeNoTag(lines_.getRaw(i)); } size += dataSize; size += 1 * getLinesList().size(); } size += unknownFields.getSerializedSize(); memoizedSize = size; return size; } @java.lang.Override public boolean equals(final java.lang.Object obj) { if (obj == this) { return true; } if (!(obj instanceof org.tensorflow.framework.DebuggedSourceFile)) { return super.equals(obj); } org.tensorflow.framework.DebuggedSourceFile other = (org.tensorflow.framework.DebuggedSourceFile) obj; if (!getHost() .equals(other.getHost())) return false; if (!getFilePath() .equals(other.getFilePath())) return false; if (getLastModified() != other.getLastModified()) return false; if (getBytes() != other.getBytes()) return false; if (!getLinesList() .equals(other.getLinesList())) return false; if (!unknownFields.equals(other.unknownFields)) 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) + HOST_FIELD_NUMBER; hash = (53 * hash) + getHost().hashCode(); hash = (37 * hash) + FILE_PATH_FIELD_NUMBER; hash = (53 * hash) + getFilePath().hashCode(); hash = (37 * hash) + LAST_MODIFIED_FIELD_NUMBER; hash = (53 * hash) + org.nd4j.shade.protobuf.Internal.hashLong( getLastModified()); hash = (37 * hash) + BYTES_FIELD_NUMBER; hash = (53 * hash) + org.nd4j.shade.protobuf.Internal.hashLong( getBytes()); if (getLinesCount() > 0) { hash = (37 * hash) + LINES_FIELD_NUMBER; hash = (53 * hash) + getLinesList().hashCode(); } hash = (29 * hash) + unknownFields.hashCode(); memoizedHashCode = hash; return hash; } public static org.tensorflow.framework.DebuggedSourceFile parseFrom( java.nio.ByteBuffer data) throws org.nd4j.shade.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static org.tensorflow.framework.DebuggedSourceFile parseFrom( java.nio.ByteBuffer data, org.nd4j.shade.protobuf.ExtensionRegistryLite extensionRegistry) throws org.nd4j.shade.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static org.tensorflow.framework.DebuggedSourceFile parseFrom( org.nd4j.shade.protobuf.ByteString data) throws org.nd4j.shade.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static org.tensorflow.framework.DebuggedSourceFile parseFrom( org.nd4j.shade.protobuf.ByteString data, org.nd4j.shade.protobuf.ExtensionRegistryLite extensionRegistry) throws org.nd4j.shade.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static org.tensorflow.framework.DebuggedSourceFile parseFrom(byte[] data) throws org.nd4j.shade.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static org.tensorflow.framework.DebuggedSourceFile parseFrom( byte[] data, org.nd4j.shade.protobuf.ExtensionRegistryLite extensionRegistry) throws org.nd4j.shade.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static org.tensorflow.framework.DebuggedSourceFile parseFrom(java.io.InputStream input) throws java.io.IOException { return org.nd4j.shade.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static org.tensorflow.framework.DebuggedSourceFile parseFrom( java.io.InputStream input, org.nd4j.shade.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return org.nd4j.shade.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input, extensionRegistry); } public static org.tensorflow.framework.DebuggedSourceFile parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return org.nd4j.shade.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } public static org.tensorflow.framework.DebuggedSourceFile parseDelimitedFrom( java.io.InputStream input, org.nd4j.shade.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return org.nd4j.shade.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input, extensionRegistry); } public static org.tensorflow.framework.DebuggedSourceFile parseFrom( org.nd4j.shade.protobuf.CodedInputStream input) throws java.io.IOException { return org.nd4j.shade.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static org.tensorflow.framework.DebuggedSourceFile parseFrom( org.nd4j.shade.protobuf.CodedInputStream input, org.nd4j.shade.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return org.nd4j.shade.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(org.tensorflow.framework.DebuggedSourceFile 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( org.nd4j.shade.protobuf.GeneratedMessageV3.BuilderParent parent) { Builder builder = new Builder(parent); return builder; } /** * Protobuf type {@code tensorflow.DebuggedSourceFile} */ public static final class Builder extends org.nd4j.shade.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:tensorflow.DebuggedSourceFile) org.tensorflow.framework.DebuggedSourceFileOrBuilder { public static final org.nd4j.shade.protobuf.Descriptors.Descriptor getDescriptor() { return org.tensorflow.framework.DebugProtos.internal_static_tensorflow_DebuggedSourceFile_descriptor; } @java.lang.Override protected org.nd4j.shade.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return org.tensorflow.framework.DebugProtos.internal_static_tensorflow_DebuggedSourceFile_fieldAccessorTable .ensureFieldAccessorsInitialized( org.tensorflow.framework.DebuggedSourceFile.class, org.tensorflow.framework.DebuggedSourceFile.Builder.class); } // Construct using org.tensorflow.framework.DebuggedSourceFile.newBuilder() private Builder() { maybeForceBuilderInitialization(); } private Builder( org.nd4j.shade.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); maybeForceBuilderInitialization(); } private void maybeForceBuilderInitialization() { if (org.nd4j.shade.protobuf.GeneratedMessageV3 .alwaysUseFieldBuilders) { } } @java.lang.Override public Builder clear() { super.clear(); host_ = ""; filePath_ = ""; lastModified_ = 0L; bytes_ = 0L; lines_ = org.nd4j.shade.protobuf.LazyStringArrayList.EMPTY; bitField0_ = (bitField0_ & ~0x00000001); return this; } @java.lang.Override public org.nd4j.shade.protobuf.Descriptors.Descriptor getDescriptorForType() { return org.tensorflow.framework.DebugProtos.internal_static_tensorflow_DebuggedSourceFile_descriptor; } @java.lang.Override public org.tensorflow.framework.DebuggedSourceFile getDefaultInstanceForType() { return org.tensorflow.framework.DebuggedSourceFile.getDefaultInstance(); } @java.lang.Override public org.tensorflow.framework.DebuggedSourceFile build() { org.tensorflow.framework.DebuggedSourceFile result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } @java.lang.Override public org.tensorflow.framework.DebuggedSourceFile buildPartial() { org.tensorflow.framework.DebuggedSourceFile result = new org.tensorflow.framework.DebuggedSourceFile(this); int from_bitField0_ = bitField0_; result.host_ = host_; result.filePath_ = filePath_; result.lastModified_ = lastModified_; result.bytes_ = bytes_; if (((bitField0_ & 0x00000001) != 0)) { lines_ = lines_.getUnmodifiableView(); bitField0_ = (bitField0_ & ~0x00000001); } result.lines_ = lines_; onBuilt(); return result; } @java.lang.Override public Builder clone() { return super.clone(); } @java.lang.Override public Builder setField( org.nd4j.shade.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { return super.setField(field, value); } @java.lang.Override public Builder clearField( org.nd4j.shade.protobuf.Descriptors.FieldDescriptor field) { return super.clearField(field); } @java.lang.Override public Builder clearOneof( org.nd4j.shade.protobuf.Descriptors.OneofDescriptor oneof) { return super.clearOneof(oneof); } @java.lang.Override public Builder setRepeatedField( org.nd4j.shade.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) { return super.setRepeatedField(field, index, value); } @java.lang.Override public Builder addRepeatedField( org.nd4j.shade.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { return super.addRepeatedField(field, value); } @java.lang.Override public Builder mergeFrom(org.nd4j.shade.protobuf.Message other) { if (other instanceof org.tensorflow.framework.DebuggedSourceFile) { return mergeFrom((org.tensorflow.framework.DebuggedSourceFile)other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(org.tensorflow.framework.DebuggedSourceFile other) { if (other == org.tensorflow.framework.DebuggedSourceFile.getDefaultInstance()) return this; if (!other.getHost().isEmpty()) { host_ = other.host_; onChanged(); } if (!other.getFilePath().isEmpty()) { filePath_ = other.filePath_; onChanged(); } if (other.getLastModified() != 0L) { setLastModified(other.getLastModified()); } if (other.getBytes() != 0L) { setBytes(other.getBytes()); } if (!other.lines_.isEmpty()) { if (lines_.isEmpty()) { lines_ = other.lines_; bitField0_ = (bitField0_ & ~0x00000001); } else { ensureLinesIsMutable(); lines_.addAll(other.lines_); } onChanged(); } this.mergeUnknownFields(other.unknownFields); onChanged(); return this; } @java.lang.Override public final boolean isInitialized() { return true; } @java.lang.Override public Builder mergeFrom( org.nd4j.shade.protobuf.CodedInputStream input, org.nd4j.shade.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { org.tensorflow.framework.DebuggedSourceFile parsedMessage = null; try { parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); } catch (org.nd4j.shade.protobuf.InvalidProtocolBufferException e) { parsedMessage = (org.tensorflow.framework.DebuggedSourceFile) e.getUnfinishedMessage(); throw e.unwrapIOException(); } finally { if (parsedMessage != null) { mergeFrom(parsedMessage); } } return this; } private int bitField0_; private java.lang.Object host_ = ""; /** *
     * The host name on which a source code file is located.
     * 
* * string host = 1; * @return The host. */ public java.lang.String getHost() { java.lang.Object ref = host_; if (!(ref instanceof java.lang.String)) { org.nd4j.shade.protobuf.ByteString bs = (org.nd4j.shade.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); host_ = s; return s; } else { return (java.lang.String) ref; } } /** *
     * The host name on which a source code file is located.
     * 
* * string host = 1; * @return The bytes for host. */ public org.nd4j.shade.protobuf.ByteString getHostBytes() { java.lang.Object ref = host_; if (ref instanceof String) { org.nd4j.shade.protobuf.ByteString b = org.nd4j.shade.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); host_ = b; return b; } else { return (org.nd4j.shade.protobuf.ByteString) ref; } } /** *
     * The host name on which a source code file is located.
     * 
* * string host = 1; * @param value The host to set. * @return This builder for chaining. */ public Builder setHost( java.lang.String value) { if (value == null) { throw new NullPointerException(); } host_ = value; onChanged(); return this; } /** *
     * The host name on which a source code file is located.
     * 
* * string host = 1; * @return This builder for chaining. */ public Builder clearHost() { host_ = getDefaultInstance().getHost(); onChanged(); return this; } /** *
     * The host name on which a source code file is located.
     * 
* * string host = 1; * @param value The bytes for host to set. * @return This builder for chaining. */ public Builder setHostBytes( org.nd4j.shade.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); host_ = value; onChanged(); return this; } private java.lang.Object filePath_ = ""; /** *
     * Path to the source code file.
     * 
* * string file_path = 2; * @return The filePath. */ public java.lang.String getFilePath() { java.lang.Object ref = filePath_; if (!(ref instanceof java.lang.String)) { org.nd4j.shade.protobuf.ByteString bs = (org.nd4j.shade.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); filePath_ = s; return s; } else { return (java.lang.String) ref; } } /** *
     * Path to the source code file.
     * 
* * string file_path = 2; * @return The bytes for filePath. */ public org.nd4j.shade.protobuf.ByteString getFilePathBytes() { java.lang.Object ref = filePath_; if (ref instanceof String) { org.nd4j.shade.protobuf.ByteString b = org.nd4j.shade.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); filePath_ = b; return b; } else { return (org.nd4j.shade.protobuf.ByteString) ref; } } /** *
     * Path to the source code file.
     * 
* * string file_path = 2; * @param value The filePath to set. * @return This builder for chaining. */ public Builder setFilePath( java.lang.String value) { if (value == null) { throw new NullPointerException(); } filePath_ = value; onChanged(); return this; } /** *
     * Path to the source code file.
     * 
* * string file_path = 2; * @return This builder for chaining. */ public Builder clearFilePath() { filePath_ = getDefaultInstance().getFilePath(); onChanged(); return this; } /** *
     * Path to the source code file.
     * 
* * string file_path = 2; * @param value The bytes for filePath to set. * @return This builder for chaining. */ public Builder setFilePathBytes( org.nd4j.shade.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); filePath_ = value; onChanged(); return this; } private long lastModified_ ; /** *
     * The timestamp at which the source code file is last modified.
     * 
* * int64 last_modified = 3; * @return The lastModified. */ @java.lang.Override public long getLastModified() { return lastModified_; } /** *
     * The timestamp at which the source code file is last modified.
     * 
* * int64 last_modified = 3; * @param value The lastModified to set. * @return This builder for chaining. */ public Builder setLastModified(long value) { lastModified_ = value; onChanged(); return this; } /** *
     * The timestamp at which the source code file is last modified.
     * 
* * int64 last_modified = 3; * @return This builder for chaining. */ public Builder clearLastModified() { lastModified_ = 0L; onChanged(); return this; } private long bytes_ ; /** *
     * Byte size of the file.
     * 
* * int64 bytes = 4; * @return The bytes. */ @java.lang.Override public long getBytes() { return bytes_; } /** *
     * Byte size of the file.
     * 
* * int64 bytes = 4; * @param value The bytes to set. * @return This builder for chaining. */ public Builder setBytes(long value) { bytes_ = value; onChanged(); return this; } /** *
     * Byte size of the file.
     * 
* * int64 bytes = 4; * @return This builder for chaining. */ public Builder clearBytes() { bytes_ = 0L; onChanged(); return this; } private org.nd4j.shade.protobuf.LazyStringList lines_ = org.nd4j.shade.protobuf.LazyStringArrayList.EMPTY; private void ensureLinesIsMutable() { if (!((bitField0_ & 0x00000001) != 0)) { lines_ = new org.nd4j.shade.protobuf.LazyStringArrayList(lines_); bitField0_ |= 0x00000001; } } /** *
     * Line-by-line content of the source code file.
     * 
* * repeated string lines = 5; * @return A list containing the lines. */ public org.nd4j.shade.protobuf.ProtocolStringList getLinesList() { return lines_.getUnmodifiableView(); } /** *
     * Line-by-line content of the source code file.
     * 
* * repeated string lines = 5; * @return The count of lines. */ public int getLinesCount() { return lines_.size(); } /** *
     * Line-by-line content of the source code file.
     * 
* * repeated string lines = 5; * @param index The index of the element to return. * @return The lines at the given index. */ public java.lang.String getLines(int index) { return lines_.get(index); } /** *
     * Line-by-line content of the source code file.
     * 
* * repeated string lines = 5; * @param index The index of the value to return. * @return The bytes of the lines at the given index. */ public org.nd4j.shade.protobuf.ByteString getLinesBytes(int index) { return lines_.getByteString(index); } /** *
     * Line-by-line content of the source code file.
     * 
* * repeated string lines = 5; * @param index The index to set the value at. * @param value The lines to set. * @return This builder for chaining. */ public Builder setLines( int index, java.lang.String value) { if (value == null) { throw new NullPointerException(); } ensureLinesIsMutable(); lines_.set(index, value); onChanged(); return this; } /** *
     * Line-by-line content of the source code file.
     * 
* * repeated string lines = 5; * @param value The lines to add. * @return This builder for chaining. */ public Builder addLines( java.lang.String value) { if (value == null) { throw new NullPointerException(); } ensureLinesIsMutable(); lines_.add(value); onChanged(); return this; } /** *
     * Line-by-line content of the source code file.
     * 
* * repeated string lines = 5; * @param values The lines to add. * @return This builder for chaining. */ public Builder addAllLines( java.lang.Iterable values) { ensureLinesIsMutable(); org.nd4j.shade.protobuf.AbstractMessageLite.Builder.addAll( values, lines_); onChanged(); return this; } /** *
     * Line-by-line content of the source code file.
     * 
* * repeated string lines = 5; * @return This builder for chaining. */ public Builder clearLines() { lines_ = org.nd4j.shade.protobuf.LazyStringArrayList.EMPTY; bitField0_ = (bitField0_ & ~0x00000001); onChanged(); return this; } /** *
     * Line-by-line content of the source code file.
     * 
* * repeated string lines = 5; * @param value The bytes of the lines to add. * @return This builder for chaining. */ public Builder addLinesBytes( org.nd4j.shade.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); ensureLinesIsMutable(); lines_.add(value); onChanged(); return this; } @java.lang.Override public final Builder setUnknownFields( final org.nd4j.shade.protobuf.UnknownFieldSet unknownFields) { return super.setUnknownFields(unknownFields); } @java.lang.Override public final Builder mergeUnknownFields( final org.nd4j.shade.protobuf.UnknownFieldSet unknownFields) { return super.mergeUnknownFields(unknownFields); } // @@protoc_insertion_point(builder_scope:tensorflow.DebuggedSourceFile) } // @@protoc_insertion_point(class_scope:tensorflow.DebuggedSourceFile) private static final org.tensorflow.framework.DebuggedSourceFile DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new org.tensorflow.framework.DebuggedSourceFile(); } public static org.tensorflow.framework.DebuggedSourceFile getDefaultInstance() { return DEFAULT_INSTANCE; } private static final org.nd4j.shade.protobuf.Parser PARSER = new org.nd4j.shade.protobuf.AbstractParser() { @java.lang.Override public DebuggedSourceFile parsePartialFrom( org.nd4j.shade.protobuf.CodedInputStream input, org.nd4j.shade.protobuf.ExtensionRegistryLite extensionRegistry) throws org.nd4j.shade.protobuf.InvalidProtocolBufferException { return new DebuggedSourceFile(input, extensionRegistry); } }; public static org.nd4j.shade.protobuf.Parser parser() { return PARSER; } @java.lang.Override public org.nd4j.shade.protobuf.Parser getParserForType() { return PARSER; } @java.lang.Override public org.tensorflow.framework.DebuggedSourceFile getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy