Interface TensorConnectionOrBuilder

  • All Superinterfaces:
    com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
    All Known Implementing Classes:
    TensorConnection, TensorConnection.Builder

    public interface TensorConnectionOrBuilder
    extends com.google.protobuf.MessageOrBuilder
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      java.lang.String getFromTensor()
      A tensor name.
      com.google.protobuf.ByteString getFromTensorBytes()
      A tensor name.
      java.lang.String getToTensor()
      A tensor name.
      com.google.protobuf.ByteString getToTensorBytes()
      A tensor name.
      • Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

        isInitialized
      • Methods inherited from interface com.google.protobuf.MessageOrBuilder

        findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
    • Method Detail

      • getFromTensor

        java.lang.String getFromTensor()
         A tensor name. The value of this tensor will be substituted for
         the tensor named in `to_tensor`.
         
        string from_tensor = 1;
        Returns:
        The fromTensor.
      • getFromTensorBytes

        com.google.protobuf.ByteString getFromTensorBytes()
         A tensor name. The value of this tensor will be substituted for
         the tensor named in `to_tensor`.
         
        string from_tensor = 1;
        Returns:
        The bytes for fromTensor.
      • getToTensor

        java.lang.String getToTensor()
         A tensor name. The value of this tensor will be bound to the
         value of the tensor named in `from_tensor`.
         
        string to_tensor = 2;
        Returns:
        The toTensor.
      • getToTensorBytes

        com.google.protobuf.ByteString getToTensorBytes()
         A tensor name. The value of this tensor will be bound to the
         value of the tensor named in `from_tensor`.
         
        string to_tensor = 2;
        Returns:
        The bytes for toTensor.