public enum CSValue extends Enum<CSValue>
| Modifier and Type | Method and Description |
|---|---|
abstract CompletionStatus |
getCompletionStatus() |
static CSValue |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CSValue[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CSValue YES
public static final CSValue NO
public static final CSValue MAYBE
public static CSValue[] values()
for (CSValue c : CSValue.values()) System.out.println(c);
public static CSValue 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 abstract CompletionStatus getCompletionStatus()
Copyright © 2017–2019 Eclipse Foundation. All rights reserved.