Package lumis.upgrade.postupgrade
Enum PostUpgradeTaskException.ErrorLevel
- java.lang.Object
-
- java.lang.Enum<PostUpgradeTaskException.ErrorLevel>
-
- lumis.upgrade.postupgrade.PostUpgradeTaskException.ErrorLevel
-
- All Implemented Interfaces:
Serializable
,Comparable<PostUpgradeTaskException.ErrorLevel>
- Enclosing class:
- PostUpgradeTaskException
public static enum PostUpgradeTaskException.ErrorLevel extends Enum<PostUpgradeTaskException.ErrorLevel>
The error level.- Since:
- 7.0.0
- Version:
- $Revision: 23869 $ $Date: 2020-06-05 14:15:47 -0300 (Fri, 05 Jun 2020) $
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CRITICAL
NONCRITICAL
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PostUpgradeTaskException.ErrorLevel
valueOf(String name)
Returns the enum constant of this type with the specified name.static PostUpgradeTaskException.ErrorLevel[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CRITICAL
public static final PostUpgradeTaskException.ErrorLevel CRITICAL
-
NONCRITICAL
public static final PostUpgradeTaskException.ErrorLevel NONCRITICAL
-
-
Method Detail
-
values
public static PostUpgradeTaskException.ErrorLevel[] 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 (PostUpgradeTaskException.ErrorLevel c : PostUpgradeTaskException.ErrorLevel.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PostUpgradeTaskException.ErrorLevel valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-