org.tensorflow.framework.DebuggedSourceFile Maven / Gradle / Ivy
// 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_ = "";
lastModified_ = 0L;
bytes_ = 0L;
lines_ = org.nd4j.shade.protobuf.LazyStringArrayList.EMPTY;
}
@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;
default: {
if (!parseUnknownFieldProto3(
input, unknownFields, extensionRegistry, tag)) {
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_ & 0x00000010) == 0x00000010)) {
lines_ = new org.nd4j.shade.protobuf.LazyStringArrayList();
mutable_bitField0_ |= 0x00000010;
}
lines_.add(s);
break;
}
}
}
} catch (org.nd4j.shade.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new org.nd4j.shade.protobuf.InvalidProtocolBufferException(
e).setUnfinishedMessage(this);
} finally {
if (((mutable_bitField0_ & 0x00000010) == 0x00000010)) {
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;
}
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);
}
private int bitField0_;
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;
*/
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;
*/
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;
*/
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;
*/
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;
*/
public long getLastModified() {
return lastModified_;
}
public static final int BYTES_FIELD_NUMBER = 4;
private long bytes_;
/**
*
* Byte size of the file.
*
*
* int64 bytes = 4;
*/
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;
*/
public org.nd4j.shade.protobuf.ProtocolStringList
getLinesList() {
return lines_;
}
/**
*
* Line-by-line content of the source code file.
*
*
* repeated string lines = 5;
*/
public int getLinesCount() {
return lines_.size();
}
/**
*
* Line-by-line content of the source code file.
*
*
* repeated string lines = 5;
*/
public java.lang.String getLines(int index) {
return lines_.get(index);
}
/**
*
* Line-by-line content of the source code file.
*
*
* repeated string lines = 5;
*/
public org.nd4j.shade.protobuf.ByteString
getLinesBytes(int index) {
return lines_.getByteString(index);
}
private byte memoizedIsInitialized = -1;
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized == 1) return true;
if (isInitialized == 0) return false;
memoizedIsInitialized = 1;
return true;
}
public void writeTo(org.nd4j.shade.protobuf.CodedOutputStream output)
throws java.io.IOException {
if (!getHostBytes().isEmpty()) {
org.nd4j.shade.protobuf.GeneratedMessageV3.writeString(output, 1, host_);
}
if (!getFilePathBytes().isEmpty()) {
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);
}
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (!getHostBytes().isEmpty()) {
size += org.nd4j.shade.protobuf.GeneratedMessageV3.computeStringSize(1, host_);
}
if (!getFilePathBytes().isEmpty()) {
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;
boolean result = true;
result = result && getHost()
.equals(other.getHost());
result = result && getFilePath()
.equals(other.getFilePath());
result = result && (getLastModified()
== other.getLastModified());
result = result && (getBytes()
== other.getBytes());
result = result && getLinesList()
.equals(other.getLinesList());
result = result && unknownFields.equals(other.unknownFields);
return result;
}
@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);
}
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);
}
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;
}
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) {
}
}
public Builder clear() {
super.clear();
host_ = "";
filePath_ = "";
lastModified_ = 0L;
bytes_ = 0L;
lines_ = org.nd4j.shade.protobuf.LazyStringArrayList.EMPTY;
bitField0_ = (bitField0_ & ~0x00000010);
return this;
}
public org.nd4j.shade.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return org.tensorflow.framework.DebugProtos.internal_static_tensorflow_DebuggedSourceFile_descriptor;
}
public org.tensorflow.framework.DebuggedSourceFile getDefaultInstanceForType() {
return org.tensorflow.framework.DebuggedSourceFile.getDefaultInstance();
}
public org.tensorflow.framework.DebuggedSourceFile build() {
org.tensorflow.framework.DebuggedSourceFile result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
public org.tensorflow.framework.DebuggedSourceFile buildPartial() {
org.tensorflow.framework.DebuggedSourceFile result = new org.tensorflow.framework.DebuggedSourceFile(this);
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
result.host_ = host_;
result.filePath_ = filePath_;
result.lastModified_ = lastModified_;
result.bytes_ = bytes_;
if (((bitField0_ & 0x00000010) == 0x00000010)) {
lines_ = lines_.getUnmodifiableView();
bitField0_ = (bitField0_ & ~0x00000010);
}
result.lines_ = lines_;
result.bitField0_ = to_bitField0_;
onBuilt();
return result;
}
public Builder clone() {
return (Builder) super.clone();
}
public Builder setField(
org.nd4j.shade.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.setField(field, value);
}
public Builder clearField(
org.nd4j.shade.protobuf.Descriptors.FieldDescriptor field) {
return (Builder) super.clearField(field);
}
public Builder clearOneof(
org.nd4j.shade.protobuf.Descriptors.OneofDescriptor oneof) {
return (Builder) super.clearOneof(oneof);
}
public Builder setRepeatedField(
org.nd4j.shade.protobuf.Descriptors.FieldDescriptor field,
int index, java.lang.Object value) {
return (Builder) super.setRepeatedField(field, index, value);
}
public Builder addRepeatedField(
org.nd4j.shade.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.addRepeatedField(field, value);
}
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_ & ~0x00000010);
} else {
ensureLinesIsMutable();
lines_.addAll(other.lines_);
}
onChanged();
}
this.mergeUnknownFields(other.unknownFields);
onChanged();
return this;
}
public final boolean isInitialized() {
return true;
}
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;
*/
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;
*/
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;
*/
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;
*/
public Builder clearHost() {
host_ = getDefaultInstance().getHost();
onChanged();
return this;
}
/**
*
* The host name on which a source code file is located.
*
*
* string host = 1;
*/
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;
*/
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;
*/
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;
*/
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;
*/
public Builder clearFilePath() {
filePath_ = getDefaultInstance().getFilePath();
onChanged();
return this;
}
/**
*
* Path to the source code file.
*
*
* string file_path = 2;
*/
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;
*/
public long getLastModified() {
return lastModified_;
}
/**
*
* The timestamp at which the source code file is last modified.
*
*
* int64 last_modified = 3;
*/
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;
*/
public Builder clearLastModified() {
lastModified_ = 0L;
onChanged();
return this;
}
private long bytes_ ;
/**
*
* Byte size of the file.
*
*
* int64 bytes = 4;
*/
public long getBytes() {
return bytes_;
}
/**
*
* Byte size of the file.
*
*
* int64 bytes = 4;
*/
public Builder setBytes(long value) {
bytes_ = value;
onChanged();
return this;
}
/**
*
* Byte size of the file.
*
*
* int64 bytes = 4;
*/
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_ & 0x00000010) == 0x00000010)) {
lines_ = new org.nd4j.shade.protobuf.LazyStringArrayList(lines_);
bitField0_ |= 0x00000010;
}
}
/**
*
* Line-by-line content of the source code file.
*
*
* repeated string lines = 5;
*/
public org.nd4j.shade.protobuf.ProtocolStringList
getLinesList() {
return lines_.getUnmodifiableView();
}
/**
*
* Line-by-line content of the source code file.
*
*
* repeated string lines = 5;
*/
public int getLinesCount() {
return lines_.size();
}
/**
*
* Line-by-line content of the source code file.
*
*
* repeated string lines = 5;
*/
public java.lang.String getLines(int index) {
return lines_.get(index);
}
/**
*
* Line-by-line content of the source code file.
*
*
* repeated string lines = 5;
*/
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;
*/
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;
*/
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;
*/
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;
*/
public Builder clearLines() {
lines_ = org.nd4j.shade.protobuf.LazyStringArrayList.EMPTY;
bitField0_ = (bitField0_ & ~0x00000010);
onChanged();
return this;
}
/**
*
* Line-by-line content of the source code file.
*
*
* repeated string lines = 5;
*/
public Builder addLinesBytes(
org.nd4j.shade.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
ensureLinesIsMutable();
lines_.add(value);
onChanged();
return this;
}
public final Builder setUnknownFields(
final org.nd4j.shade.protobuf.UnknownFieldSet unknownFields) {
return super.setUnknownFieldsProto3(unknownFields);
}
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() {
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;
}
public org.tensorflow.framework.DebuggedSourceFile getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}