public static enum ReadOption.CameraIllumination extends java.lang.Enum<ReadOption.CameraIllumination>
Enum Constant and Description |
---|
ALTERNATIVE
投光・消灯を繰り返し、読み取りに成功した方法を優先して使用する Repeat flooding and extinguishing, and prioritize the method that succeeded in reading. |
MIRROR_REFLECTION
鏡面反射が確認された際に照明を消灯し、それ以外の場合は点灯する Turns off the light when specular reflection is confirmed, and turns it on in other cases. |
TURN_OFF
照明を消灯する Turn off the lights |
TURN_ON
照明を投光する Turn on the lights |
Modifier and Type | Method and Description |
---|---|
int |
getId() |
static ReadOption.CameraIllumination |
valueOf(int id) |
static ReadOption.CameraIllumination |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ReadOption.CameraIllumination[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReadOption.CameraIllumination TURN_ON
public static final ReadOption.CameraIllumination TURN_OFF
public static final ReadOption.CameraIllumination ALTERNATIVE
public static final ReadOption.CameraIllumination MIRROR_REFLECTION
public static ReadOption.CameraIllumination[] values()
for (ReadOption.CameraIllumination c : ReadOption.CameraIllumination.values()) System.out.println(c);
public static ReadOption.CameraIllumination valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic int getId()
public static ReadOption.CameraIllumination valueOf(int id)