public static enum ISqlGenerator.EStatementType extends Enum<ISqlGenerator.EStatementType>
| Enum Constant and Description |
|---|
E_CREATE_SCHEMA |
E_CREATE_TABLE |
E_DELETE |
E_DELETE_ALL |
E_GET_ALL |
E_INSERT |
E_QUERY_BY_ID |
E_QUERY_BY_PROPS |
E_REMOVE_TABLE |
E_UPDATE |
| Modifier and Type | Method and Description |
|---|---|
static ISqlGenerator.EStatementType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ISqlGenerator.EStatementType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ISqlGenerator.EStatementType E_CREATE_SCHEMA
public static final ISqlGenerator.EStatementType E_CREATE_TABLE
public static final ISqlGenerator.EStatementType E_REMOVE_TABLE
public static final ISqlGenerator.EStatementType E_INSERT
public static final ISqlGenerator.EStatementType E_UPDATE
public static final ISqlGenerator.EStatementType E_DELETE
public static final ISqlGenerator.EStatementType E_DELETE_ALL
public static final ISqlGenerator.EStatementType E_GET_ALL
public static final ISqlGenerator.EStatementType E_QUERY_BY_ID
public static final ISqlGenerator.EStatementType E_QUERY_BY_PROPS
public static ISqlGenerator.EStatementType[] values()
for (ISqlGenerator.EStatementType c : ISqlGenerator.EStatementType.values()) System.out.println(c);
public static ISqlGenerator.EStatementType 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 as-development.net. All rights reserved.