public static enum AdapterInjectionSupport.LoggingMode extends java.lang.Enum<AdapterInjectionSupport.LoggingMode>
AdapterInjectionSupport.LoggingMode
specifies if binding-related information and
warning messages should be printed.Enum Constant and Description |
---|
DEVELOPMENT
In
DEVELOPMENT mode, all information, warning, and error
messages are printed. |
PRODUCTION
In
PRODUCTION mode, only error messages are printed, and
information or warning messages are suppressed. |
Modifier and Type | Method and Description |
---|---|
static AdapterInjectionSupport.LoggingMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AdapterInjectionSupport.LoggingMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AdapterInjectionSupport.LoggingMode DEVELOPMENT
DEVELOPMENT
mode, all information, warning, and error
messages are printed.public static final AdapterInjectionSupport.LoggingMode PRODUCTION
PRODUCTION
mode, only error messages are printed, and
information or warning messages are suppressed.public static AdapterInjectionSupport.LoggingMode[] values()
for (AdapterInjectionSupport.LoggingMode c : AdapterInjectionSupport.LoggingMode.values()) System.out.println(c);
public static AdapterInjectionSupport.LoggingMode 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 nullCopyright (c) 2014 itemis AG and others. All rights reserved.