Package org.tensorflow.framework
Interface GraphDebugInfo.FileLineColOrBuilder
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
GraphDebugInfo.FileLineCol,GraphDebugInfo.FileLineCol.Builder
- Enclosing class:
GraphDebugInfo
public static interface GraphDebugInfo.FileLineColOrBuilder
extends com.google.protobuf.MessageOrBuilder
-
Method Summary
Modifier and TypeMethodDescriptiongetCode()Source code contained in this file line.com.google.protobuf.ByteStringSource code contained in this file line.intgetCol()Col number in the file line.intFile name index, which can be used to retrieve the file name string from `files`.getFunc()Name of function contains the file line.com.google.protobuf.ByteStringName of function contains the file line.intgetLine()Line number in the file.booleanhasCode()Source code contained in this file line.booleanhasCol()Col number in the file line.booleanFile name index, which can be used to retrieve the file name string from `files`.booleanhasFunc()Name of function contains the file line.booleanhasLine()Line number in the file.Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder
isInitializedMethods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
Method Details
-
hasFileIndex
boolean hasFileIndex()File name index, which can be used to retrieve the file name string from `files`. The value should be between 0 and (len(files)-1)
optional int32 file_index = 1;- Returns:
- Whether the fileIndex field is set.
-
getFileIndex
int getFileIndex()File name index, which can be used to retrieve the file name string from `files`. The value should be between 0 and (len(files)-1)
optional int32 file_index = 1;- Returns:
- The fileIndex.
-
hasLine
boolean hasLine()Line number in the file.
optional int32 line = 2;- Returns:
- Whether the line field is set.
-
getLine
int getLine()Line number in the file.
optional int32 line = 2;- Returns:
- The line.
-
hasCol
boolean hasCol()Col number in the file line.
optional int32 col = 3;- Returns:
- Whether the col field is set.
-
getCol
int getCol()Col number in the file line.
optional int32 col = 3;- Returns:
- The col.
-
hasFunc
boolean hasFunc()Name of function contains the file line.
optional string func = 4;- Returns:
- Whether the func field is set.
-
getFunc
String getFunc()Name of function contains the file line.
optional string func = 4;- Returns:
- The func.
-
getFuncBytes
com.google.protobuf.ByteString getFuncBytes()Name of function contains the file line.
optional string func = 4;- Returns:
- The bytes for func.
-
hasCode
boolean hasCode()Source code contained in this file line.
optional string code = 5;- Returns:
- Whether the code field is set.
-
getCode
String getCode()Source code contained in this file line.
optional string code = 5;- Returns:
- The code.
-
getCodeBytes
com.google.protobuf.ByteString getCodeBytes()Source code contained in this file line.
optional string code = 5;- Returns:
- The bytes for code.
-