Package org.tensorflow.metadata.v0
Interface PathOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Path,Path.Builder
public interface PathOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetStep(int index)Any string is a valid step.com.google.protobuf.ByteStringgetStepBytes(int index)Any string is a valid step.intgetStepCount()Any string is a valid step.List<String>getStepList()Any string is a valid step.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getStepList
List<String> getStepList()
Any string is a valid step. However, whenever possible have a step be [A-Za-z0-9_]+.
repeated string step = 1;- Returns:
- A list containing the step.
-
getStepCount
int getStepCount()
Any string is a valid step. However, whenever possible have a step be [A-Za-z0-9_]+.
repeated string step = 1;- Returns:
- The count of step.
-
getStep
String getStep(int index)
Any string is a valid step. However, whenever possible have a step be [A-Za-z0-9_]+.
repeated string step = 1;- Parameters:
index- The index of the element to return.- Returns:
- The step at the given index.
-
getStepBytes
com.google.protobuf.ByteString getStepBytes(int index)
Any string is a valid step. However, whenever possible have a step be [A-Za-z0-9_]+.
repeated string step = 1;- Parameters:
index- The index of the value to return.- Returns:
- The bytes of the step at the given index.
-
-