public enum FaultType extends Enum<FaultType>
| Enum Constant and Description |
|---|
BACKEND_PROCESSING_FAILED |
SCHEME_VALIDATION_ERROR |
SYNTACTICALLY_INCORRECT_XML_ERROR |
| Modifier and Type | Method and Description |
|---|---|
String |
getId() |
String |
getMessage() |
static FaultType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FaultType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FaultType SCHEME_VALIDATION_ERROR
public static final FaultType SYNTACTICALLY_INCORRECT_XML_ERROR
public static final FaultType BACKEND_PROCESSING_FAILED
public static FaultType[] values()
for (FaultType c : FaultType.values()) System.out.println(c);
public static FaultType 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 getMessage()
public String getId()
Copyright © 2019. All rights reserved.