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