Package ai.onnxruntime
Enum OnnxMap.OnnxMapValueType
- java.lang.Object
-
- java.lang.Enum<OnnxMap.OnnxMapValueType>
-
- ai.onnxruntime.OnnxMap.OnnxMapValueType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<OnnxMap.OnnxMapValueType>
- Enclosing class:
- OnnxMap
public static enum OnnxMap.OnnxMapValueType extends java.lang.Enum<OnnxMap.OnnxMapValueType>
An enum representing the Java type of the values stored in anOnnxMap
.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static OnnxMap.OnnxMapValueType
mapFromInt(int value)
Gets the enum type from it's integer id.static OnnxMap.OnnxMapValueType
mapFromOnnxJavaType(OnnxJavaType type)
Maps aOnnxJavaType
into a map value type.static OnnxMap.OnnxMapValueType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static OnnxMap.OnnxMapValueType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INVALID
public static final OnnxMap.OnnxMapValueType INVALID
An invalid Map value type.
-
STRING
public static final OnnxMap.OnnxMapValueType STRING
A String value.
-
LONG
public static final OnnxMap.OnnxMapValueType LONG
A 64-bit signed integer value.
-
FLOAT
public static final OnnxMap.OnnxMapValueType FLOAT
A 32-bit floating point value.
-
DOUBLE
public static final OnnxMap.OnnxMapValueType DOUBLE
A 64-bit floating point value.
-
-
Method Detail
-
values
public static OnnxMap.OnnxMapValueType[] 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 (OnnxMap.OnnxMapValueType c : OnnxMap.OnnxMapValueType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OnnxMap.OnnxMapValueType 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
-
mapFromInt
public static OnnxMap.OnnxMapValueType mapFromInt(int value)
Gets the enum type from it's integer id. Used by native code.- Parameters:
value
- The integer id.- Returns:
- The enum instance.
-
mapFromOnnxJavaType
public static OnnxMap.OnnxMapValueType mapFromOnnxJavaType(OnnxJavaType type)
Maps aOnnxJavaType
into a map value type. If it's not a valid map type returnINVALID
.- Parameters:
type
- The Java type.- Returns:
- The equivalent Map value type.
-
-