Interface TensorRepresentation.DefaultValueOrBuilder

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      com.google.protobuf.ByteString getBytesValue()
      bytes bytes_value = 3;
      double getFloatValue()
      double float_value = 1;
      long getIntValue()
      Note that the data column might be of a shorter integral type.
      TensorRepresentation.DefaultValue.KindCase getKindCase()  
      long getUintValue()
      uint_value should only be used if the default value can't fit in a int64 (`int_value`).
      boolean hasBytesValue()
      bytes bytes_value = 3;
      boolean hasFloatValue()
      double float_value = 1;
      boolean hasIntValue()
      Note that the data column might be of a shorter integral type.
      boolean hasUintValue()
      uint_value should only be used if the default value can't fit in a int64 (`int_value`).
      • 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

      • hasFloatValue

        boolean hasFloatValue()
        double float_value = 1;
        Returns:
        Whether the floatValue field is set.
      • getFloatValue

        double getFloatValue()
        double float_value = 1;
        Returns:
        The floatValue.
      • hasIntValue

        boolean hasIntValue()
         Note that the data column might be of a shorter integral type. It's the
         user's responsitiblity to make sure the default value fits that type.
         
        int64 int_value = 2;
        Returns:
        Whether the intValue field is set.
      • getIntValue

        long getIntValue()
         Note that the data column might be of a shorter integral type. It's the
         user's responsitiblity to make sure the default value fits that type.
         
        int64 int_value = 2;
        Returns:
        The intValue.
      • hasBytesValue

        boolean hasBytesValue()
        bytes bytes_value = 3;
        Returns:
        Whether the bytesValue field is set.
      • getBytesValue

        com.google.protobuf.ByteString getBytesValue()
        bytes bytes_value = 3;
        Returns:
        The bytesValue.
      • hasUintValue

        boolean hasUintValue()
         uint_value should only be used if the default value can't fit in a
         int64 (`int_value`).
         
        uint64 uint_value = 4;
        Returns:
        Whether the uintValue field is set.
      • getUintValue

        long getUintValue()
         uint_value should only be used if the default value can't fit in a
         int64 (`int_value`).
         
        uint64 uint_value = 4;
        Returns:
        The uintValue.