Package flyteidl.core
Interface Types.OutputReferenceOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Types.OutputReference,Types.OutputReference.Builder
- Enclosing class:
- Types
public static interface Types.OutputReferenceOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetNodeId()Node id must exist at the graph layer.com.google.protobuf.ByteStringgetNodeIdBytes()Node id must exist at the graph layer.StringgetVar()Variable name must refer to an output variable for the node.com.google.protobuf.ByteStringgetVarBytes()Variable name must refer to an output variable for the node.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getNodeId
String getNodeId()
Node id must exist at the graph layer.
string node_id = 1;- Returns:
- The nodeId.
-
getNodeIdBytes
com.google.protobuf.ByteString getNodeIdBytes()
Node id must exist at the graph layer.
string node_id = 1;- Returns:
- The bytes for nodeId.
-
getVar
String getVar()
Variable name must refer to an output variable for the node.
string var = 2;- Returns:
- The var.
-
getVarBytes
com.google.protobuf.ByteString getVarBytes()
Variable name must refer to an output variable for the node.
string var = 2;- Returns:
- The bytes for var.
-
-