public enum WlDataSourceError extends Enum<WlDataSourceError>
| Enum Constant and Description |
|---|
INVALID_ACTION_MASK
action mask contains invalid values
|
INVALID_SOURCE
source doesn't accept this request
|
| Modifier and Type | Field and Description |
|---|---|
int |
value |
| Modifier and Type | Method and Description |
|---|---|
static WlDataSourceError |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WlDataSourceError[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WlDataSourceError INVALID_ACTION_MASK
public static final WlDataSourceError INVALID_SOURCE
public static WlDataSourceError[] values()
for (WlDataSourceError c : WlDataSourceError.values()) System.out.println(c);
public static WlDataSourceError 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 © 2016. All rights reserved.