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