public enum IceComponentState extends Enum<IceComponentState>
Enum Constant and Description |
---|
CONNECTED |
CONNECTING |
DISCONNECTED |
FAILED |
GATHERING |
READY |
Modifier and Type | Method and Description |
---|---|
static IceComponentState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IceComponentState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IceComponentState DISCONNECTED
public static final IceComponentState GATHERING
public static final IceComponentState CONNECTING
public static final IceComponentState CONNECTED
public static final IceComponentState READY
public static final IceComponentState FAILED
public static IceComponentState[] values()
for (IceComponentState c : IceComponentState.values()) System.out.println(c);
public static IceComponentState valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2022 Kurento. All rights reserved.