public static enum ForStatement.Form extends Enum<ForStatement.Form>
| Modifier and Type | Method and Description |
|---|---|
static ForStatement.Form |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ForStatement.Form[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ForStatement.Form GENERAL
public static final ForStatement.Form ENHANCED
public static ForStatement.Form[] values()
for (ForStatement.Form c : ForStatement.Form.values()) System.out.println(c);
public static ForStatement.Form 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–2020 Fizzed, Inc. All rights reserved.