public enum DeclareType extends Enum<DeclareType>
| Modifier and Type | Method and Description |
|---|---|
static DeclareType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DeclareType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DeclareType TABLE
public static final DeclareType AS
public static final DeclareType TYPE
public static DeclareType[] values()
for (DeclareType c : DeclareType.values()) System.out.println(c);
public static DeclareType 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 © 2004–2021 JSQLParser. All rights reserved.