public static enum Options.YesNo extends Enum<Options.YesNo>
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static Options.YesNo |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Options.YesNo[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Options.YesNo YES
public static final Options.YesNo NO
public static Options.YesNo[] values()
for (Options.YesNo c : Options.YesNo.values()) System.out.println(c);
public static Options.YesNo 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 toString()
toString
in class Enum<Options.YesNo>
Copyright © 2005–2015 BaseX Team. All rights reserved.