public enum NestedTypes extends Enum<NestedTypes>
| Modifier and Type | Method and Description |
|---|---|
static NestedTypes |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NestedTypes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NestedTypes AND
public static final NestedTypes OR
public static final NestedTypes NOT
public static NestedTypes[] values()
for (NestedTypes c : NestedTypes.values()) System.out.println(c);
public static NestedTypes 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 nullThis work is licensed under a Creative Commons Attribution 4.0 International License.