public static enum ExceptionPolicy.Policies extends Enum<ExceptionPolicy.Policies> implements ExceptionPolicy
ExceptionPolicy.Policies| Enum Constant and Description |
|---|
IGNORE_EXCEPTIONS |
THROW |
| Modifier and Type | Method and Description |
|---|---|
static ExceptionPolicy.Policies |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExceptionPolicy.Policies[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOfhandlerpublic static final ExceptionPolicy.Policies IGNORE_EXCEPTIONS
public static final ExceptionPolicy.Policies THROW
public static ExceptionPolicy.Policies[] values()
for (ExceptionPolicy.Policies c : ExceptionPolicy.Policies.values()) System.out.println(c);
public static ExceptionPolicy.Policies 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 nullCopyright © 2024 Atlassian. All rights reserved.