public enum DrawStatus extends Enum<DrawStatus>
| Enum Constant and Description | 
|---|
Cancelled  | 
Closed  | 
Finished  | 
Open  | 
Unknown  | 
| Modifier and Type | Method and Description | 
|---|---|
static DrawStatus | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static DrawStatus[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final DrawStatus Open
public static final DrawStatus Closed
public static final DrawStatus Finished
public static final DrawStatus Cancelled
public static final DrawStatus Unknown
public static DrawStatus[] values()
for (DrawStatus c : DrawStatus.values()) System.out.println(c);
public static DrawStatus 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–2025. All rights reserved.