public static enum Queue.Status extends Enum<Queue.Status>
Enum Constant and Description |
---|
active
The queue is active but NOT accepting new chat requests.
|
closed
The queue is NOT active and NOT accepting new chat requests.
|
open
The queue is active and accepting new chat requests.
|
Modifier and Type | Method and Description |
---|---|
static Queue.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Queue.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Queue.Status open
public static final Queue.Status active
public static final Queue.Status closed
public static Queue.Status[] values()
for (Queue.Status c : Queue.Status.values()) System.out.println(c);
public static Queue.Status 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–2019 Tigase. All rights reserved.