public enum Keywords extends Enum<Keywords>
Enum Constant and Description |
---|
AND |
BETWEEN |
ELSE |
EVERY |
EXTERNAL |
FALSE |
FOR |
FUNCTION |
IF |
IN |
INSTANCE |
NOT |
NULL |
OF |
OR |
RETURN |
SATISFIES |
SOME |
THEN |
TRUE |
Modifier and Type | Method and Description |
---|---|
static Keywords |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Keywords[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Keywords FOR
public static final Keywords RETURN
public static final Keywords IN
public static final Keywords IF
public static final Keywords THEN
public static final Keywords ELSE
public static final Keywords SOME
public static final Keywords EVERY
public static final Keywords SATISFIES
public static final Keywords INSTANCE
public static final Keywords OF
public static final Keywords FUNCTION
public static final Keywords EXTERNAL
public static final Keywords OR
public static final Keywords AND
public static final Keywords BETWEEN
public static final Keywords NOT
public static final Keywords NULL
public static final Keywords TRUE
public static final Keywords FALSE
public final String symbol
public static Keywords[] values()
for (Keywords c : Keywords.values()) System.out.println(c);
public static Keywords 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 © 2001–2018 JBoss by Red Hat. All rights reserved.