Package onnx

Interface Onnx.OperatorSetIdProtoOrBuilder

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

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

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      String getDomain()
      The domain of the operator set being identified.
      com.google.protobuf.ByteString getDomainBytes()
      The domain of the operator set being identified.
      long getVersion()
      The version of the operator set being identified.
      boolean hasDomain()
      The domain of the operator set being identified.
      boolean hasVersion()
      The version of the operator set being identified.
      • 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

      • hasDomain

        boolean hasDomain()
         The domain of the operator set being identified.
         The empty string ("") or absence of this field implies the operator
         set that is defined as part of the ONNX specification.
         This field MUST be present in this version of the IR when referring to any other operator set.
         
        optional string domain = 1;
        Returns:
        Whether the domain field is set.
      • getDomain

        String getDomain()
         The domain of the operator set being identified.
         The empty string ("") or absence of this field implies the operator
         set that is defined as part of the ONNX specification.
         This field MUST be present in this version of the IR when referring to any other operator set.
         
        optional string domain = 1;
        Returns:
        The domain.
      • getDomainBytes

        com.google.protobuf.ByteString getDomainBytes()
         The domain of the operator set being identified.
         The empty string ("") or absence of this field implies the operator
         set that is defined as part of the ONNX specification.
         This field MUST be present in this version of the IR when referring to any other operator set.
         
        optional string domain = 1;
        Returns:
        The bytes for domain.
      • hasVersion

        boolean hasVersion()
         The version of the operator set being identified.
         This field MUST be present in this version of the IR.
         
        optional int64 version = 2;
        Returns:
        Whether the version field is set.
      • getVersion

        long getVersion()
         The version of the operator set being identified.
         This field MUST be present in this version of the IR.
         
        optional int64 version = 2;
        Returns:
        The version.