Package org.tensorflow.framework
Interface DebuggedSourceFileOrBuilder
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
DebuggedSourceFile,DebuggedSourceFile.Builder
public interface DebuggedSourceFileOrBuilder
extends com.google.protobuf.MessageOrBuilder
-
Method Summary
Modifier and Type Method Description longgetBytes()Byte size of the file.java.lang.StringgetFilePath()Path to the source code file.com.google.protobuf.ByteStringgetFilePathBytes()Path to the source code file.java.lang.StringgetHost()The host name on which a source code file is located.com.google.protobuf.ByteStringgetHostBytes()The host name on which a source code file is located.longgetLastModified()The timestamp at which the source code file is last modified.java.lang.StringgetLines(int index)Line-by-line content of the source code file.com.google.protobuf.ByteStringgetLinesBytes(int index)Line-by-line content of the source code file.intgetLinesCount()Line-by-line content of the source code file.java.util.List<java.lang.String>getLinesList()Line-by-line content of the source code file.Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
Method Details
-
getHost
java.lang.String getHost()The host name on which a source code file is located.
string host = 1;- Returns:
- The host.
-
getHostBytes
com.google.protobuf.ByteString getHostBytes()The host name on which a source code file is located.
string host = 1;- Returns:
- The bytes for host.
-
getFilePath
java.lang.String getFilePath()Path to the source code file.
string file_path = 2;- Returns:
- The filePath.
-
getFilePathBytes
com.google.protobuf.ByteString getFilePathBytes()Path to the source code file.
string file_path = 2;- Returns:
- The bytes for filePath.
-
getLastModified
long getLastModified()The timestamp at which the source code file is last modified.
int64 last_modified = 3;- Returns:
- The lastModified.
-
getBytes
long getBytes()Byte size of the file.
int64 bytes = 4;- Returns:
- The bytes.
-
getLinesList
java.util.List<java.lang.String> getLinesList()Line-by-line content of the source code file.
repeated string lines = 5;- Returns:
- A list containing the lines.
-
getLinesCount
int getLinesCount()Line-by-line content of the source code file.
repeated string lines = 5;- Returns:
- The count of lines.
-
getLines
java.lang.String getLines(int index)Line-by-line content of the source code file.
repeated string lines = 5;- Parameters:
index- The index of the element to return.- Returns:
- The lines at the given index.
-
getLinesBytes
com.google.protobuf.ByteString getLinesBytes(int index)Line-by-line content of the source code file.
repeated string lines = 5;- Parameters:
index- The index of the value to return.- Returns:
- The bytes of the lines at the given index.
-