public enum SeverityCodeType extends Enum<SeverityCodeType>
| Enum Constant and Description |
|---|
CUSTOMCODE |
ERROR |
PARTIALSUCCESS |
WARNING |
| Modifier and Type | Method and Description |
|---|---|
static SeverityCodeType |
fromValue(String v) |
String |
getValue() |
static SeverityCodeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SeverityCodeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SeverityCodeType WARNING
public static final SeverityCodeType ERROR
public static final SeverityCodeType PARTIALSUCCESS
public static final SeverityCodeType CUSTOMCODE
public static SeverityCodeType[] values()
for (SeverityCodeType c : SeverityCodeType.values()) System.out.println(c);
public static SeverityCodeType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String getValue()
public static SeverityCodeType fromValue(String v)
Copyright © 2015. All Rights Reserved.