Enum ParamEnum
- java.lang.Object
-
- java.lang.Enum<ParamEnum>
-
- edu.wpi.grip.generated.opencv_core.enumeration.ParamEnum
-
-
Field Summary
Fields Modifier and Type Field Description int
value
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ParamEnum
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ParamEnum[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INT
public static final ParamEnum INT
-
BOOLEAN
public static final ParamEnum BOOLEAN
-
REAL
public static final ParamEnum REAL
-
STRING
public static final ParamEnum STRING
-
MAT
public static final ParamEnum MAT
-
MAT_VECTOR
public static final ParamEnum MAT_VECTOR
-
ALGORITHM
public static final ParamEnum ALGORITHM
-
FLOAT
public static final ParamEnum FLOAT
-
UNSIGNED_INT
public static final ParamEnum UNSIGNED_INT
-
UINT64
public static final ParamEnum UINT64
-
UCHAR
public static final ParamEnum UCHAR
-
-
Method Detail
-
values
public static ParamEnum[] 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 (ParamEnum c : ParamEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ParamEnum 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
-
-