Package com.apama.net.interfaces
Enum GenericComponentManagement.GenericComponentLogLevel
- java.lang.Object
-
- java.lang.Enum<GenericComponentManagement.GenericComponentLogLevel>
-
- com.apama.net.interfaces.GenericComponentManagement.GenericComponentLogLevel
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<GenericComponentManagement.GenericComponentLogLevel>
- Enclosing interface:
- GenericComponentManagement
public static enum GenericComponentManagement.GenericComponentLogLevel extends java.lang.Enum<GenericComponentManagement.GenericComponentLogLevel>
Log verbosity levels
-
-
Enum Constant Summary
Enum Constants Enum Constant Description LOGLEVEL_CRITLOGLEVEL_DEBUGLOGLEVEL_ERRORLOGLEVEL_FATALLOGLEVEL_INFOLOGLEVEL_OFFLOGLEVEL_TRACELOGLEVEL_UNKNOWNLOGLEVEL_WARN
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetLogLevel()static GenericComponentManagement.GenericComponentLogLevelvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static GenericComponentManagement.GenericComponentLogLevel[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LOGLEVEL_UNKNOWN
public static final GenericComponentManagement.GenericComponentLogLevel LOGLEVEL_UNKNOWN
-
LOGLEVEL_OFF
public static final GenericComponentManagement.GenericComponentLogLevel LOGLEVEL_OFF
-
LOGLEVEL_CRIT
public static final GenericComponentManagement.GenericComponentLogLevel LOGLEVEL_CRIT
-
LOGLEVEL_FATAL
public static final GenericComponentManagement.GenericComponentLogLevel LOGLEVEL_FATAL
-
LOGLEVEL_ERROR
public static final GenericComponentManagement.GenericComponentLogLevel LOGLEVEL_ERROR
-
LOGLEVEL_WARN
public static final GenericComponentManagement.GenericComponentLogLevel LOGLEVEL_WARN
-
LOGLEVEL_INFO
public static final GenericComponentManagement.GenericComponentLogLevel LOGLEVEL_INFO
-
LOGLEVEL_DEBUG
public static final GenericComponentManagement.GenericComponentLogLevel LOGLEVEL_DEBUG
-
LOGLEVEL_TRACE
public static final GenericComponentManagement.GenericComponentLogLevel LOGLEVEL_TRACE
-
-
Method Detail
-
values
public static GenericComponentManagement.GenericComponentLogLevel[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (GenericComponentManagement.GenericComponentLogLevel c : GenericComponentManagement.GenericComponentLogLevel.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static GenericComponentManagement.GenericComponentLogLevel valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
getLogLevel
public java.lang.String getLogLevel()
- Returns:
- The actual log level name
-
-