Enum Class AdapterInjectionSupport.LoggingMode
java.lang.Object
java.lang.Enum<AdapterInjectionSupport.LoggingMode>
org.eclipse.gef.common.adapt.inject.AdapterInjectionSupport.LoggingMode
- All Implemented Interfaces:
Serializable
,Comparable<AdapterInjectionSupport.LoggingMode>
,Constable
- Enclosing class:
- AdapterInjectionSupport
public static enum AdapterInjectionSupport.LoggingMode
extends Enum<AdapterInjectionSupport.LoggingMode>
The
AdapterInjectionSupport.LoggingMode
specifies if binding-related information and
warning messages should be printed.-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionInDEVELOPMENT
mode, all information, warning, and error messages are printed.InPRODUCTION
mode, only error messages are printed, and information or warning messages are suppressed. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static AdapterInjectionSupport.LoggingMode[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
DEVELOPMENT
InDEVELOPMENT
mode, all information, warning, and error messages are printed. -
PRODUCTION
InPRODUCTION
mode, only error messages are printed, and information or warning messages are suppressed.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-