public static enum DdlParserListener.EventType extends Enum<DdlParserListener.EventType>
DdlParserListener.Events.| Enum Constant and Description |
|---|
ALTER_DATABASE |
ALTER_TABLE |
CREATE_DATABASE |
CREATE_INDEX |
CREATE_TABLE |
DROP_DATABASE |
DROP_INDEX |
DROP_TABLE |
SET_VARIABLE |
TRUNCATE_TABLE |
USE_DATABASE |
| Modifier and Type | Method and Description |
|---|---|
static DdlParserListener.EventType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DdlParserListener.EventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DdlParserListener.EventType CREATE_TABLE
public static final DdlParserListener.EventType ALTER_TABLE
public static final DdlParserListener.EventType DROP_TABLE
public static final DdlParserListener.EventType TRUNCATE_TABLE
public static final DdlParserListener.EventType CREATE_INDEX
public static final DdlParserListener.EventType DROP_INDEX
public static final DdlParserListener.EventType CREATE_DATABASE
public static final DdlParserListener.EventType ALTER_DATABASE
public static final DdlParserListener.EventType DROP_DATABASE
public static final DdlParserListener.EventType USE_DATABASE
public static final DdlParserListener.EventType SET_VARIABLE
public static DdlParserListener.EventType[] values()
for (DdlParserListener.EventType c : DdlParserListener.EventType.values()) System.out.println(c);
public static DdlParserListener.EventType 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 © 2021 JBoss by Red Hat. All rights reserved.