public static enum SalesforceLogger.Level extends java.lang.Enum<SalesforceLogger.Level>
Enum Constant and Description |
---|
DEBUG |
ERROR |
INFO |
OFF |
VERBOSE |
WARN |
Modifier and Type | Method and Description |
---|---|
static SalesforceLogger.Level |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SalesforceLogger.Level[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SalesforceLogger.Level OFF
public static final SalesforceLogger.Level ERROR
public static final SalesforceLogger.Level WARN
public static final SalesforceLogger.Level INFO
public static final SalesforceLogger.Level DEBUG
public static final SalesforceLogger.Level VERBOSE
public static SalesforceLogger.Level[] values()
for (SalesforceLogger.Level c : SalesforceLogger.Level.values()) System.out.println(c);
public static SalesforceLogger.Level 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 null