public enum AlivcLivePushLogLevel extends java.lang.Enum<AlivcLivePushLogLevel>
Enum Constant and Description |
---|
AlivcLivePushLogLevelAll
全部
|
AlivcLivePushLogLevelDebug
调试
|
AlivcLivePushLogLevelError
错误
|
AlivcLivePushLogLevelInfo
提示
|
AlivcLivePushLogLevelNone
不输出日志
|
AlivcLivePushLogLevelVerbose
冗长
|
AlivcLivePushLogLevelWarn
警告
|
Modifier and Type | Method and Description |
---|---|
int |
getLevel()
获取枚举值
|
static AlivcLivePushLogLevel |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AlivcLivePushLogLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AlivcLivePushLogLevel AlivcLivePushLogLevelAll
public static final AlivcLivePushLogLevel AlivcLivePushLogLevelVerbose
public static final AlivcLivePushLogLevel AlivcLivePushLogLevelDebug
public static final AlivcLivePushLogLevel AlivcLivePushLogLevelInfo
public static final AlivcLivePushLogLevel AlivcLivePushLogLevelWarn
public static final AlivcLivePushLogLevel AlivcLivePushLogLevelError
public static final AlivcLivePushLogLevel AlivcLivePushLogLevelNone
public static AlivcLivePushLogLevel[] values()
for (AlivcLivePushLogLevel c : AlivcLivePushLogLevel.values()) System.out.println(c);
public static AlivcLivePushLogLevel valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic int getLevel()