public enum WlDisplayError extends Enum<WlDisplayError>
These errors are global and can be emitted in response to any server request.
| Enum Constant and Description |
|---|
INVALID_METHOD
method doesn't exist on the specified interface
|
INVALID_OBJECT
server couldn't find object
|
NO_MEMORY
server is out of memory
|
| Modifier and Type | Field and Description |
|---|---|
int |
value |
| Modifier and Type | Method and Description |
|---|---|
static WlDisplayError |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WlDisplayError[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WlDisplayError INVALID_OBJECT
public static final WlDisplayError INVALID_METHOD
public static final WlDisplayError NO_MEMORY
public static WlDisplayError[] values()
for (WlDisplayError c : WlDisplayError.values()) System.out.println(c);
public static WlDisplayError 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.