public enum DebugType extends Enum<DebugType>
| Enum Constant and Description |
|---|
CODING_ERROR
The debug type that will be used for information about coding errors or
other types of incorrect uses of the SCIM SDK.
|
EXCEPTION
The debug type that will be used for debugging information about
exceptions that are caught.
|
OTHER
The debug type that will be used for debug messages not applicable to any
of the other categories.
|
| Modifier and Type | Method and Description |
|---|---|
static DebugType |
forName(String name)
Retrieves the debug type with the specified name.
|
String |
getName()
Retrieves the name for this debug type.
|
static String |
getTypeNameList()
Retrieves a comma-delimited list of the defined debug type names.
|
String |
toString()
Retrieves a string representation of this debug type.
|
static DebugType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DebugType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DebugType EXCEPTION
public static final DebugType CODING_ERROR
public static DebugType[] values()
for (DebugType c : DebugType.values()) System.out.println(c);
public static DebugType 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 nullpublic String getName()
public static DebugType forName(String name)
name - The name of the debug type to retrieve.null if there is no such
debug type.public static String getTypeNameList()
Copyright © 2011–2016 UnboundID. All rights reserved.