public enum LogModule extends Enum<LogModule>
Modifier and Type | Method and Description |
---|---|
static LogModule |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LogModule[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LogModule CORE
public static final LogModule PLATFORM
public static final LogModule SIGNALING
public static final LogModule WEBRTC
public static LogModule[] values()
for (LogModule c : LogModule.values()) System.out.println(c);
public static LogModule 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 null5.2.0