Package org.tensorflow.util
Interface IteratorStateMetadataOrBuilder
-
- All Superinterfaces:
org.nd4j.shade.protobuf.MessageLiteOrBuilder,org.nd4j.shade.protobuf.MessageOrBuilder
- All Known Implementing Classes:
IteratorStateMetadata,IteratorStateMetadata.Builder
public interface IteratorStateMetadataOrBuilder extends org.nd4j.shade.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetKeys(int index)Keys for tensors in the VariantTensorDataProto.org.nd4j.shade.protobuf.ByteStringgetKeysBytes(int index)Keys for tensors in the VariantTensorDataProto.intgetKeysCount()Keys for tensors in the VariantTensorDataProto.List<String>getKeysList()Keys for tensors in the VariantTensorDataProto.StringgetVersion()A user-specified version string.org.nd4j.shade.protobuf.ByteStringgetVersionBytes()A user-specified version string.-
Methods inherited from interface org.nd4j.shade.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getVersion
String getVersion()
A user-specified version string.
string version = 1;- Returns:
- The version.
-
getVersionBytes
org.nd4j.shade.protobuf.ByteString getVersionBytes()
A user-specified version string.
string version = 1;- Returns:
- The bytes for version.
-
getKeysList
List<String> getKeysList()
Keys for tensors in the VariantTensorDataProto.
repeated string keys = 2;- Returns:
- A list containing the keys.
-
getKeysCount
int getKeysCount()
Keys for tensors in the VariantTensorDataProto.
repeated string keys = 2;- Returns:
- The count of keys.
-
getKeys
String getKeys(int index)
Keys for tensors in the VariantTensorDataProto.
repeated string keys = 2;- Parameters:
index- The index of the element to return.- Returns:
- The keys at the given index.
-
getKeysBytes
org.nd4j.shade.protobuf.ByteString getKeysBytes(int index)
Keys for tensors in the VariantTensorDataProto.
repeated string keys = 2;- Parameters:
index- The index of the value to return.- Returns:
- The bytes of the keys at the given index.
-
-