public enum HandleStatus extends Enum<HandleStatus>
Modifier and Type | Method and Description |
---|---|
static HandleStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HandleStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HandleStatus HANDLED
public static final HandleStatus NO_MATCH
public static final HandleStatus BUSY
public static HandleStatus[] values()
for (HandleStatus c : HandleStatus.values()) System.out.println(c);
public static HandleStatus 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 JBoss by Red Hat. All rights reserved.