Package ai.onnxruntime
Enum OnnxValue.OnnxValueType
- java.lang.Object
-
- java.lang.Enum<OnnxValue.OnnxValueType>
-
- ai.onnxruntime.OnnxValue.OnnxValueType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<OnnxValue.OnnxValueType>
- Enclosing interface:
- OnnxValue
public static enum OnnxValue.OnnxValueType extends java.lang.Enum<OnnxValue.OnnxValueType>
The type of theOnnxValue
, mirroring the id in the C API.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ONNX_TYPE_MAP
A map.ONNX_TYPE_OPAQUE
An opaque type not accessible from Java.ONNX_TYPE_OPTIONAL
An optional input value.ONNX_TYPE_SEQUENCE
A sequence of tensors or maps.ONNX_TYPE_SPARSETENSOR
A sparse tensor.ONNX_TYPE_TENSOR
A tensor.ONNX_TYPE_UNKNOWN
An unknown OrtValue type.
-
Field Summary
Fields Modifier and Type Field Description int
value
The id number of this type in the C API.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static OnnxValue.OnnxValueType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static OnnxValue.OnnxValueType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ONNX_TYPE_UNKNOWN
public static final OnnxValue.OnnxValueType ONNX_TYPE_UNKNOWN
An unknown OrtValue type.
-
ONNX_TYPE_TENSOR
public static final OnnxValue.OnnxValueType ONNX_TYPE_TENSOR
A tensor.
-
ONNX_TYPE_SEQUENCE
public static final OnnxValue.OnnxValueType ONNX_TYPE_SEQUENCE
A sequence of tensors or maps.
-
ONNX_TYPE_MAP
public static final OnnxValue.OnnxValueType ONNX_TYPE_MAP
A map.
-
ONNX_TYPE_OPAQUE
public static final OnnxValue.OnnxValueType ONNX_TYPE_OPAQUE
An opaque type not accessible from Java.
-
ONNX_TYPE_SPARSETENSOR
public static final OnnxValue.OnnxValueType ONNX_TYPE_SPARSETENSOR
A sparse tensor.
-
ONNX_TYPE_OPTIONAL
public static final OnnxValue.OnnxValueType ONNX_TYPE_OPTIONAL
An optional input value.
-
-
Method Detail
-
values
public static OnnxValue.OnnxValueType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (OnnxValue.OnnxValueType c : OnnxValue.OnnxValueType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OnnxValue.OnnxValueType valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-