Package org.intocps.maestro.core.dto
Enum MultiModel.InitializeLogLevel
- java.lang.Object
-
- java.lang.Enum<MultiModel.InitializeLogLevel>
-
- org.intocps.maestro.core.dto.MultiModel.InitializeLogLevel
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<MultiModel.InitializeLogLevel>
- Enclosing class:
- MultiModel
public static enum MultiModel.InitializeLogLevel extends java.lang.Enum<MultiModel.InitializeLogLevel>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static MultiModel.InitializeLogLevelvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static MultiModel.InitializeLogLevel[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
OFF
public static final MultiModel.InitializeLogLevel OFF
-
FATAL
public static final MultiModel.InitializeLogLevel FATAL
-
ERROR
public static final MultiModel.InitializeLogLevel ERROR
-
WARN
public static final MultiModel.InitializeLogLevel WARN
-
INFO
public static final MultiModel.InitializeLogLevel INFO
-
DEBUG
public static final MultiModel.InitializeLogLevel DEBUG
-
TRACE
public static final MultiModel.InitializeLogLevel TRACE
-
ALL
public static final MultiModel.InitializeLogLevel ALL
-
-
Method Detail
-
values
public static MultiModel.InitializeLogLevel[] 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 (MultiModel.InitializeLogLevel c : MultiModel.InitializeLogLevel.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MultiModel.InitializeLogLevel 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
-
-