public enum FaultMode extends Enum<FaultMode>
| Enum Constant and Description | 
|---|
| CHECKED_APPLICATION_FAULT | 
| LOGICAL_RUNTIME_FAULT | 
| RUNTIME_FAULT | 
| UNCHECKED_APPLICATION_FAULT | 
| Modifier and Type | Method and Description | 
|---|---|
| static FaultMode | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static FaultMode[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final FaultMode RUNTIME_FAULT
public static final FaultMode LOGICAL_RUNTIME_FAULT
public static final FaultMode CHECKED_APPLICATION_FAULT
public static final FaultMode UNCHECKED_APPLICATION_FAULT
public static FaultMode[] values()
for (FaultMode c : FaultMode.values()) System.out.println(c);
public static FaultMode 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 nullApache CXF