Enum KogitoDMNMessage.DMNMessageSeverityKS
- java.lang.Object
-
- java.lang.Enum<KogitoDMNMessage.DMNMessageSeverityKS>
-
- org.kie.server.services.dmn.modelspecific.KogitoDMNMessage.DMNMessageSeverityKS
-
- All Implemented Interfaces:
Serializable,Comparable<KogitoDMNMessage.DMNMessageSeverityKS>
- Enclosing class:
- KogitoDMNMessage
public static enum KogitoDMNMessage.DMNMessageSeverityKS extends Enum<KogitoDMNMessage.DMNMessageSeverityKS>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description org.kie.dmn.api.core.DMNMessage.SeverityasSeverity()static KogitoDMNMessage.DMNMessageSeverityKSof(org.kie.dmn.api.core.DMNMessage.Severity value)static KogitoDMNMessage.DMNMessageSeverityKSvalueOf(String name)Returns the enum constant of this type with the specified name.static KogitoDMNMessage.DMNMessageSeverityKS[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INFO
public static final KogitoDMNMessage.DMNMessageSeverityKS INFO
-
WARN
public static final KogitoDMNMessage.DMNMessageSeverityKS WARN
-
ERROR
public static final KogitoDMNMessage.DMNMessageSeverityKS ERROR
-
-
Method Detail
-
values
public static KogitoDMNMessage.DMNMessageSeverityKS[] 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 (KogitoDMNMessage.DMNMessageSeverityKS c : KogitoDMNMessage.DMNMessageSeverityKS.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static KogitoDMNMessage.DMNMessageSeverityKS 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
-
of
public static KogitoDMNMessage.DMNMessageSeverityKS of(org.kie.dmn.api.core.DMNMessage.Severity value)
-
asSeverity
public org.kie.dmn.api.core.DMNMessage.Severity asSeverity()
-
-