public static enum Schedule.Status extends Enum<Schedule.Status>
| Enum Constant and Description |
|---|
ARRANGED |
DONT_ARRANGE |
NEED_ARRANGE |
| Modifier and Type | Method and Description |
|---|---|
String |
getDescription() |
static Schedule.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Schedule.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Schedule.Status NEED_ARRANGE
public static final Schedule.Status ARRANGED
public static final Schedule.Status DONT_ARRANGE
public static Schedule.Status[] values()
for (Schedule.Status c : Schedule.Status.values()) System.out.println(c);
public static Schedule.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 nullpublic String getDescription()
Copyright © 2014–2019 The OpenURP Software. All rights reserved.