Package onnx

Class Onnx.AttributeProto

java.lang.Object
com.google.protobuf.AbstractMessageLite
com.google.protobuf.AbstractMessage
com.google.protobuf.GeneratedMessageV3
onnx.Onnx.AttributeProto
All Implemented Interfaces:
com.google.protobuf.Message, com.google.protobuf.MessageLite, com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder, Serializable, Onnx.AttributeProtoOrBuilder
Enclosing class:
Onnx

public static final class Onnx.AttributeProto extends com.google.protobuf.GeneratedMessageV3 implements Onnx.AttributeProtoOrBuilder
 Attributes
 A named attribute containing either singular float, integer, string, graph,
 and tensor values, or repeated float, integer, string, graph, and tensor values.
 An AttributeProto MUST contain the name field, and *only one* of the
 following content fields, effectively enforcing a C/C++ union equivalent.
 
Protobuf type onnx.AttributeProto
See Also:
  • Field Details

  • Method Details

    • newInstance

      protected Object newInstance(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
      Overrides:
      newInstance in class com.google.protobuf.GeneratedMessageV3
    • getUnknownFields

      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      Specified by:
      getUnknownFields in interface com.google.protobuf.MessageOrBuilder
      Overrides:
      getUnknownFields in class com.google.protobuf.GeneratedMessageV3
    • getDescriptor

      public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    • internalGetFieldAccessorTable

      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      Specified by:
      internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
    • hasName

      public boolean hasName()
       The name field MUST be present for this version of the IR.
       
      optional string name = 1;
      Specified by:
      hasName in interface Onnx.AttributeProtoOrBuilder
      Returns:
      Whether the name field is set.
    • getName

      public String getName()
       The name field MUST be present for this version of the IR.
       
      optional string name = 1;
      Specified by:
      getName in interface Onnx.AttributeProtoOrBuilder
      Returns:
      The name.
    • getNameBytes

      public com.google.protobuf.ByteString getNameBytes()
       The name field MUST be present for this version of the IR.
       
      optional string name = 1;
      Specified by:
      getNameBytes in interface Onnx.AttributeProtoOrBuilder
      Returns:
      The bytes for name.
    • hasRefAttrName

      public boolean hasRefAttrName()
       if ref_attr_name is not empty, ref_attr_name is the attribute name in parent function.
       In this case, this AttributeProto does not contain data, and it's a reference of attribute
       in parent scope.
       NOTE: This should ONLY be used in function (sub-graph). It's invalid to be used in main graph.
       
      optional string ref_attr_name = 21;
      Specified by:
      hasRefAttrName in interface Onnx.AttributeProtoOrBuilder
      Returns:
      Whether the refAttrName field is set.
    • getRefAttrName

      public String getRefAttrName()
       if ref_attr_name is not empty, ref_attr_name is the attribute name in parent function.
       In this case, this AttributeProto does not contain data, and it's a reference of attribute
       in parent scope.
       NOTE: This should ONLY be used in function (sub-graph). It's invalid to be used in main graph.
       
      optional string ref_attr_name = 21;
      Specified by:
      getRefAttrName in interface Onnx.AttributeProtoOrBuilder
      Returns:
      The refAttrName.
    • getRefAttrNameBytes

      public com.google.protobuf.ByteString getRefAttrNameBytes()
       if ref_attr_name is not empty, ref_attr_name is the attribute name in parent function.
       In this case, this AttributeProto does not contain data, and it's a reference of attribute
       in parent scope.
       NOTE: This should ONLY be used in function (sub-graph). It's invalid to be used in main graph.
       
      optional string ref_attr_name = 21;
      Specified by:
      getRefAttrNameBytes in interface Onnx.AttributeProtoOrBuilder
      Returns:
      The bytes for refAttrName.
    • hasDocString

      public boolean hasDocString()
       A human-readable documentation for this attribute. Markdown is allowed.
       
      optional string doc_string = 13;
      Specified by:
      hasDocString in interface Onnx.AttributeProtoOrBuilder
      Returns:
      Whether the docString field is set.
    • getDocString

      public String getDocString()
       A human-readable documentation for this attribute. Markdown is allowed.
       
      optional string doc_string = 13;
      Specified by:
      getDocString in interface Onnx.AttributeProtoOrBuilder
      Returns:
      The docString.
    • getDocStringBytes

      public com.google.protobuf.ByteString getDocStringBytes()
       A human-readable documentation for this attribute. Markdown is allowed.
       
      optional string doc_string = 13;
      Specified by:
      getDocStringBytes in interface Onnx.AttributeProtoOrBuilder
      Returns:
      The bytes for docString.
    • hasType

      public boolean hasType()
       The type field MUST be present for this version of the IR.
       For 0.0.1 versions of the IR, this field was not defined, and
       implementations needed to use has_field hueristics to determine
       which value field was in use.  For IR_VERSION 0.0.2 or later, this
       field MUST be set and match the f|i|s|t|... field in use.  This
       change was made to accomodate proto3 implementations.
       
      optional .onnx.AttributeProto.AttributeType type = 20;
      Specified by:
      hasType in interface Onnx.AttributeProtoOrBuilder
      Returns:
      Whether the type field is set.
    • getType

       The type field MUST be present for this version of the IR.
       For 0.0.1 versions of the IR, this field was not defined, and
       implementations needed to use has_field hueristics to determine
       which value field was in use.  For IR_VERSION 0.0.2 or later, this
       field MUST be set and match the f|i|s|t|... field in use.  This
       change was made to accomodate proto3 implementations.
       
      optional .onnx.AttributeProto.AttributeType type = 20;
      Specified by:
      getType in interface Onnx.AttributeProtoOrBuilder
      Returns:
      The type.
    • hasF

      public boolean hasF()
       Exactly ONE of the following fields must be present for this version of the IR
       
      optional float f = 2;
      Specified by:
      hasF in interface Onnx.AttributeProtoOrBuilder
      Returns:
      Whether the f field is set.
    • getF

      public float getF()
       Exactly ONE of the following fields must be present for this version of the IR
       
      optional float f = 2;
      Specified by:
      getF in interface Onnx.AttributeProtoOrBuilder
      Returns:
      The f.
    • hasI

      public boolean hasI()
       int
       
      optional int64 i = 3;
      Specified by:
      hasI in interface Onnx.AttributeProtoOrBuilder
      Returns:
      Whether the i field is set.
    • getI

      public long getI()
       int
       
      optional int64 i = 3;
      Specified by:
      getI in interface Onnx.AttributeProtoOrBuilder
      Returns:
      The i.
    • hasS

      public boolean hasS()
       UTF-8 string
       
      optional bytes s = 4;
      Specified by:
      hasS in interface Onnx.AttributeProtoOrBuilder
      Returns:
      Whether the s field is set.
    • getS

      public com.google.protobuf.ByteString getS()
       UTF-8 string
       
      optional bytes s = 4;
      Specified by:
      getS in interface Onnx.AttributeProtoOrBuilder
      Returns:
      The s.
    • hasT

      public boolean hasT()
       tensor value
       
      optional .onnx.TensorProto t = 5;
      Specified by:
      hasT in interface Onnx.AttributeProtoOrBuilder
      Returns:
      Whether the t field is set.
    • getT

      public Onnx.TensorProto getT()
       tensor value
       
      optional .onnx.TensorProto t = 5;
      Specified by:
      getT in interface Onnx.AttributeProtoOrBuilder
      Returns:
      The t.
    • getTOrBuilder

      public Onnx.TensorProtoOrBuilder getTOrBuilder()
       tensor value
       
      optional .onnx.TensorProto t = 5;
      Specified by:
      getTOrBuilder in interface Onnx.AttributeProtoOrBuilder
    • hasG

      public boolean hasG()
       graph
       
      optional .onnx.GraphProto g = 6;
      Specified by:
      hasG in interface Onnx.AttributeProtoOrBuilder
      Returns:
      Whether the g field is set.
    • getG

      public Onnx.GraphProto getG()
       graph
       
      optional .onnx.GraphProto g = 6;
      Specified by:
      getG in interface Onnx.AttributeProtoOrBuilder
      Returns:
      The g.
    • getGOrBuilder

      public Onnx.GraphProtoOrBuilder getGOrBuilder()
       graph
       
      optional .onnx.GraphProto g = 6;
      Specified by:
      getGOrBuilder in interface Onnx.AttributeProtoOrBuilder
    • getFloatsList

      public List<Float> getFloatsList()
       list of floats
       
      repeated float floats = 7;
      Specified by:
      getFloatsList in interface Onnx.AttributeProtoOrBuilder
      Returns:
      A list containing the floats.
    • getFloatsCount

      public int getFloatsCount()
       list of floats
       
      repeated float floats = 7;
      Specified by:
      getFloatsCount in interface Onnx.AttributeProtoOrBuilder
      Returns:
      The count of floats.
    • getFloats

      public float getFloats(int index)
       list of floats
       
      repeated float floats = 7;
      Specified by:
      getFloats in interface Onnx.AttributeProtoOrBuilder
      Parameters:
      index - The index of the element to return.
      Returns:
      The floats at the given index.
    • getIntsList

      public List<Long> getIntsList()
       list of ints
       
      repeated int64 ints = 8;
      Specified by:
      getIntsList in interface Onnx.AttributeProtoOrBuilder
      Returns:
      A list containing the ints.
    • getIntsCount

      public int getIntsCount()
       list of ints
       
      repeated int64 ints = 8;
      Specified by:
      getIntsCount in interface Onnx.AttributeProtoOrBuilder
      Returns:
      The count of ints.
    • getInts

      public long getInts(int index)
       list of ints
       
      repeated int64 ints = 8;
      Specified by:
      getInts in interface Onnx.AttributeProtoOrBuilder
      Parameters:
      index - The index of the element to return.
      Returns:
      The ints at the given index.
    • getStringsList

      public List<com.google.protobuf.ByteString> getStringsList()
       list of UTF-8 strings
       
      repeated bytes strings = 9;
      Specified by:
      getStringsList in interface Onnx.AttributeProtoOrBuilder
      Returns:
      A list containing the strings.
    • getStringsCount

      public int getStringsCount()
       list of UTF-8 strings
       
      repeated bytes strings = 9;
      Specified by:
      getStringsCount in interface Onnx.AttributeProtoOrBuilder
      Returns:
      The count of strings.
    • getStrings

      public com.google.protobuf.ByteString getStrings(int index)
       list of UTF-8 strings
       
      repeated bytes strings = 9;
      Specified by:
      getStrings in interface Onnx.AttributeProtoOrBuilder
      Parameters:
      index - The index of the element to return.
      Returns:
      The strings at the given index.
    • getTensorsList

      public List<Onnx.TensorProto> getTensorsList()
       list of tensors
       
      repeated .onnx.TensorProto tensors = 10;
      Specified by:
      getTensorsList in interface Onnx.AttributeProtoOrBuilder
    • getTensorsOrBuilderList

      public List<? extends Onnx.TensorProtoOrBuilder> getTensorsOrBuilderList()
       list of tensors
       
      repeated .onnx.TensorProto tensors = 10;
      Specified by:
      getTensorsOrBuilderList in interface Onnx.AttributeProtoOrBuilder
    • getTensorsCount

      public int getTensorsCount()
       list of tensors
       
      repeated .onnx.TensorProto tensors = 10;
      Specified by:
      getTensorsCount in interface Onnx.AttributeProtoOrBuilder
    • getTensors

      public Onnx.TensorProto getTensors(int index)
       list of tensors
       
      repeated .onnx.TensorProto tensors = 10;
      Specified by:
      getTensors in interface Onnx.AttributeProtoOrBuilder
    • getTensorsOrBuilder

      public Onnx.TensorProtoOrBuilder getTensorsOrBuilder(int index)
       list of tensors
       
      repeated .onnx.TensorProto tensors = 10;
      Specified by:
      getTensorsOrBuilder in interface Onnx.AttributeProtoOrBuilder
    • getGraphsList

      public List<Onnx.GraphProto> getGraphsList()
       list of graph
       
      repeated .onnx.GraphProto graphs = 11;
      Specified by:
      getGraphsList in interface Onnx.AttributeProtoOrBuilder
    • getGraphsOrBuilderList

      public List<? extends Onnx.GraphProtoOrBuilder> getGraphsOrBuilderList()
       list of graph
       
      repeated .onnx.GraphProto graphs = 11;
      Specified by:
      getGraphsOrBuilderList in interface Onnx.AttributeProtoOrBuilder
    • getGraphsCount

      public int getGraphsCount()
       list of graph
       
      repeated .onnx.GraphProto graphs = 11;
      Specified by:
      getGraphsCount in interface Onnx.AttributeProtoOrBuilder
    • getGraphs

      public Onnx.GraphProto getGraphs(int index)
       list of graph
       
      repeated .onnx.GraphProto graphs = 11;
      Specified by:
      getGraphs in interface Onnx.AttributeProtoOrBuilder
    • getGraphsOrBuilder

      public Onnx.GraphProtoOrBuilder getGraphsOrBuilder(int index)
       list of graph
       
      repeated .onnx.GraphProto graphs = 11;
      Specified by:
      getGraphsOrBuilder in interface Onnx.AttributeProtoOrBuilder
    • isInitialized

      public final boolean isInitialized()
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3
    • writeTo

      public void writeTo(com.google.protobuf.CodedOutputStream output) throws IOException
      Specified by:
      writeTo in interface com.google.protobuf.MessageLite
      Overrides:
      writeTo in class com.google.protobuf.GeneratedMessageV3
      Throws:
      IOException
    • getSerializedSize

      public int getSerializedSize()
      Specified by:
      getSerializedSize in interface com.google.protobuf.MessageLite
      Overrides:
      getSerializedSize in class com.google.protobuf.GeneratedMessageV3
    • equals

      public boolean equals(Object obj)
      Specified by:
      equals in interface com.google.protobuf.Message
      Overrides:
      equals in class com.google.protobuf.AbstractMessage
    • hashCode

      public int hashCode()
      Specified by:
      hashCode in interface com.google.protobuf.Message
      Overrides:
      hashCode in class com.google.protobuf.AbstractMessage
    • parseFrom

      public static Onnx.AttributeProto parseFrom(ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
    • parseFrom

      public static Onnx.AttributeProto parseFrom(ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
    • parseFrom

      public static Onnx.AttributeProto parseFrom(com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
    • parseFrom

      public static Onnx.AttributeProto parseFrom(com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
    • parseFrom

      public static Onnx.AttributeProto parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
    • parseFrom

      public static Onnx.AttributeProto parseFrom(byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
    • parseFrom

      public static Onnx.AttributeProto parseFrom(InputStream input) throws IOException
      Throws:
      IOException
    • parseFrom

      public static Onnx.AttributeProto parseFrom(InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws IOException
      Throws:
      IOException
    • parseDelimitedFrom

      public static Onnx.AttributeProto parseDelimitedFrom(InputStream input) throws IOException
      Throws:
      IOException
    • parseDelimitedFrom

      public static Onnx.AttributeProto parseDelimitedFrom(InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws IOException
      Throws:
      IOException
    • parseFrom

      public static Onnx.AttributeProto parseFrom(com.google.protobuf.CodedInputStream input) throws IOException
      Throws:
      IOException
    • parseFrom

      public static Onnx.AttributeProto parseFrom(com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws IOException
      Throws:
      IOException
    • newBuilderForType

      public Onnx.AttributeProto.Builder newBuilderForType()
      Specified by:
      newBuilderForType in interface com.google.protobuf.Message
      Specified by:
      newBuilderForType in interface com.google.protobuf.MessageLite
    • newBuilder

      public static Onnx.AttributeProto.Builder newBuilder()
    • newBuilder

      public static Onnx.AttributeProto.Builder newBuilder(Onnx.AttributeProto prototype)
    • toBuilder

      public Onnx.AttributeProto.Builder toBuilder()
      Specified by:
      toBuilder in interface com.google.protobuf.Message
      Specified by:
      toBuilder in interface com.google.protobuf.MessageLite
    • newBuilderForType

      protected Onnx.AttributeProto.Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
      Specified by:
      newBuilderForType in class com.google.protobuf.GeneratedMessageV3
    • getDefaultInstance

      public static Onnx.AttributeProto getDefaultInstance()
    • parser

      public static com.google.protobuf.Parser<Onnx.AttributeProto> parser()
    • getParserForType

      public com.google.protobuf.Parser<Onnx.AttributeProto> getParserForType()
      Specified by:
      getParserForType in interface com.google.protobuf.Message
      Specified by:
      getParserForType in interface com.google.protobuf.MessageLite
      Overrides:
      getParserForType in class com.google.protobuf.GeneratedMessageV3
    • getDefaultInstanceForType

      public Onnx.AttributeProto getDefaultInstanceForType()
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder