Package org.intel.openvino
Enum ElementType
- java.lang.Object
-
- java.lang.Enum<ElementType>
-
- org.intel.openvino.ElementType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<ElementType>
public enum ElementType extends java.lang.Enum<ElementType>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetValue()static ElementTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static ElementType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
undefined
public static final ElementType undefined
-
dynamic
public static final ElementType dynamic
-
bool
public static final ElementType bool
-
bf16
public static final ElementType bf16
-
f16
public static final ElementType f16
-
f32
public static final ElementType f32
-
f64
public static final ElementType f64
-
i4
public static final ElementType i4
-
i8
public static final ElementType i8
-
i16
public static final ElementType i16
-
i32
public static final ElementType i32
-
i64
public static final ElementType i64
-
u1
public static final ElementType u1
-
u4
public static final ElementType u4
-
u8
public static final ElementType u8
-
u16
public static final ElementType u16
-
u32
public static final ElementType u32
-
u64
public static final ElementType u64
-
-
Method Detail
-
values
public static ElementType[] 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 (ElementType c : ElementType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ElementType 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
-
getValue
public int getValue()
-
-