Enum MuxCapturer.State
- java.lang.Object
-
- java.lang.Enum<MuxCapturer.State>
-
- com.mux.sdk.webrtc.spaces.internal.MuxCapturer.State
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<MuxCapturer.State>
- Enclosing class:
- MuxCapturer<T extends MuxCapturer.Configuration>
public static enum MuxCapturer.State extends java.lang.Enum<MuxCapturer.State>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description Capturing
ConfigurationRejected
Configured
Idle
RequestedConfiguration
StartingCapture
StoppingCapture
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static MuxCapturer.State
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static MuxCapturer.State[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Idle
public static final MuxCapturer.State Idle
-
RequestedConfiguration
public static final MuxCapturer.State RequestedConfiguration
-
Configured
public static final MuxCapturer.State Configured
-
ConfigurationRejected
public static final MuxCapturer.State ConfigurationRejected
-
StartingCapture
public static final MuxCapturer.State StartingCapture
-
Capturing
public static final MuxCapturer.State Capturing
-
StoppingCapture
public static final MuxCapturer.State StoppingCapture
-
-
Method Detail
-
values
public static MuxCapturer.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 (MuxCapturer.State c : MuxCapturer.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 MuxCapturer.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
-
-