Package com.microblink.view
Enum BaseCameraView.CameraViewState
- java.lang.Object
-
- java.lang.Enum<BaseCameraView.CameraViewState>
-
- com.microblink.view.BaseCameraView.CameraViewState
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<BaseCameraView.CameraViewState>
- Enclosing class:
- BaseCameraView
public static enum BaseCameraView.CameraViewState extends java.lang.Enum<BaseCameraView.CameraViewState>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CREATED
Indicates that create() has been called, next you need to call start() methodDESTROYED
View is in destroyed (destroy() has been called - all resources have been released) or initial state (nothing is yet loaded), you need to call create() methodRESUMED
Indicates that resume() has been called, view will soon initialize camera and start receiving framesSTARTED
Indicates that start() has been called, next you need to call resume() method
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static BaseCameraView.CameraViewState
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static BaseCameraView.CameraViewState[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DESTROYED
public static final BaseCameraView.CameraViewState DESTROYED
View is in destroyed (destroy() has been called - all resources have been released) or initial state (nothing is yet loaded), you need to call create() method
-
CREATED
public static final BaseCameraView.CameraViewState CREATED
Indicates that create() has been called, next you need to call start() method
-
STARTED
public static final BaseCameraView.CameraViewState STARTED
Indicates that start() has been called, next you need to call resume() method
-
RESUMED
public static final BaseCameraView.CameraViewState RESUMED
Indicates that resume() has been called, view will soon initialize camera and start receiving frames
-
-
Method Detail
-
values
public static BaseCameraView.CameraViewState[] 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 (BaseCameraView.CameraViewState c : BaseCameraView.CameraViewState.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BaseCameraView.CameraViewState 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
-
-