public enum EnumSqlJobType extends Enum<EnumSqlJobType>
| Enum Constant and Description |
|---|
ANALYZE |
DELETE |
EXPORT |
IMPORT |
INSERT |
LIFECYCLE_CLEAN |
QUERY |
SQL_EXPORT |
SQL_IMPORT |
SQL_INSERT |
SQL_QUERY |
UPDATE |
| Modifier and Type | Method and Description |
|---|---|
static boolean |
isInHasResultType(String sqlType) |
static boolean |
isInNoResultType(String sqlType) |
static EnumSqlJobType |
of(String sqlType) |
static EnumSqlJobType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EnumSqlJobType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumSqlJobType IMPORT
public static final EnumSqlJobType EXPORT
public static final EnumSqlJobType QUERY
public static final EnumSqlJobType INSERT
public static final EnumSqlJobType SQL_IMPORT
public static final EnumSqlJobType SQL_EXPORT
public static final EnumSqlJobType SQL_QUERY
public static final EnumSqlJobType SQL_INSERT
public static final EnumSqlJobType ANALYZE
public static final EnumSqlJobType UPDATE
public static final EnumSqlJobType DELETE
public static final EnumSqlJobType LIFECYCLE_CLEAN
public static EnumSqlJobType[] values()
for (EnumSqlJobType c : EnumSqlJobType.values()) System.out.println(c);
public static EnumSqlJobType 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 nullpublic static EnumSqlJobType of(String sqlType)
public static boolean isInHasResultType(String sqlType)
public static boolean isInNoResultType(String sqlType)
Copyright © 2025. All rights reserved.