Package onnx

Interface Onnx.ValueInfoProtoOrBuilder

  • All Superinterfaces:
    com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
    All Known Implementing Classes:
    Onnx.ValueInfoProto, Onnx.ValueInfoProto.Builder
    Enclosing class:
    Onnx

    public static interface Onnx.ValueInfoProtoOrBuilder
    extends com.google.protobuf.MessageOrBuilder
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      String getDocString()
      A human-readable documentation for this value.
      com.google.protobuf.ByteString getDocStringBytes()
      A human-readable documentation for this value.
      String getName()
      This field MUST be present in this version of the IR.
      com.google.protobuf.ByteString getNameBytes()
      This field MUST be present in this version of the IR.
      Onnx.TypeProto getType()
      This field MUST be present in this version of the IR.
      Onnx.TypeProtoOrBuilder getTypeOrBuilder()
      This field MUST be present in this version of the IR.
      boolean hasDocString()
      A human-readable documentation for this value.
      boolean hasName()
      This field MUST be present in this version of the IR.
      boolean hasType()
      This field MUST be present in this version of the IR.
      • 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

      • hasName

        boolean hasName()
         This field MUST be present in this version of the IR.
         
        optional string name = 1;
        Returns:
        Whether the name field is set.
      • getName

        String getName()
         This field MUST be present in this version of the IR.
         
        optional string name = 1;
        Returns:
        The name.
      • getNameBytes

        com.google.protobuf.ByteString getNameBytes()
         This field MUST be present in this version of the IR.
         
        optional string name = 1;
        Returns:
        The bytes for name.
      • hasType

        boolean hasType()
         This field MUST be present in this version of the IR.
         
        optional .onnx.TypeProto type = 2;
        Returns:
        Whether the type field is set.
      • getType

        Onnx.TypeProto getType()
         This field MUST be present in this version of the IR.
         
        optional .onnx.TypeProto type = 2;
        Returns:
        The type.
      • getTypeOrBuilder

        Onnx.TypeProtoOrBuilder getTypeOrBuilder()
         This field MUST be present in this version of the IR.
         
        optional .onnx.TypeProto type = 2;
      • hasDocString

        boolean hasDocString()
         A human-readable documentation for this value. Markdown is allowed.
         
        optional string doc_string = 3;
        Returns:
        Whether the docString field is set.
      • getDocString

        String getDocString()
         A human-readable documentation for this value. Markdown is allowed.
         
        optional string doc_string = 3;
        Returns:
        The docString.
      • getDocStringBytes

        com.google.protobuf.ByteString getDocStringBytes()
         A human-readable documentation for this value. Markdown is allowed.
         
        optional string doc_string = 3;
        Returns:
        The bytes for docString.