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