Package ipsk.audio.capture
Enum Capture3.State
- java.lang.Object
-
- java.lang.Enum<Capture3.State>
-
- ipsk.audio.capture.Capture3.State
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<Capture3.State>
- Enclosing class:
- Capture3
public static enum Capture3.State extends java.lang.Enum<Capture3.State>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CAPTURE
CLOSE
CLOSING
ERROR
PAUSE
RECORD
RECORD_INIT
STOP
STOPPING
TARGET_CHANGE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Capture3.State
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Capture3.State[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CLOSE
public static final Capture3.State CLOSE
-
CLOSING
public static final Capture3.State CLOSING
-
STOPPING
public static final Capture3.State STOPPING
-
STOP
public static final Capture3.State STOP
-
CAPTURE
public static final Capture3.State CAPTURE
-
RECORD_INIT
public static final Capture3.State RECORD_INIT
-
RECORD
public static final Capture3.State RECORD
-
TARGET_CHANGE
public static final Capture3.State TARGET_CHANGE
-
PAUSE
public static final Capture3.State PAUSE
-
ERROR
public static final Capture3.State ERROR
-
-
Method Detail
-
values
public static Capture3.State[] 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 (Capture3.State c : Capture3.State.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Capture3.State 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
-
-