Enum StatementLogSqlSession.SqlStatementType
- java.lang.Object
-
- java.lang.Enum<StatementLogSqlSession.SqlStatementType>
-
- org.camunda.bpm.qa.performance.engine.sqlstatementlog.StatementLogSqlSession.SqlStatementType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<StatementLogSqlSession.SqlStatementType>
- Enclosing class:
- StatementLogSqlSession
public static enum StatementLogSqlSession.SqlStatementType extends java.lang.Enum<StatementLogSqlSession.SqlStatementType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DELETE
INSERT
SELECT
SELECT_LIST
SELECT_MAP
SELECT_ONE
UPDATE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static StatementLogSqlSession.SqlStatementType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static StatementLogSqlSession.SqlStatementType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SELECT
public static final StatementLogSqlSession.SqlStatementType SELECT
-
SELECT_ONE
public static final StatementLogSqlSession.SqlStatementType SELECT_ONE
-
SELECT_LIST
public static final StatementLogSqlSession.SqlStatementType SELECT_LIST
-
SELECT_MAP
public static final StatementLogSqlSession.SqlStatementType SELECT_MAP
-
INSERT
public static final StatementLogSqlSession.SqlStatementType INSERT
-
UPDATE
public static final StatementLogSqlSession.SqlStatementType UPDATE
-
DELETE
public static final StatementLogSqlSession.SqlStatementType DELETE
-
-
Method Detail
-
values
public static StatementLogSqlSession.SqlStatementType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (StatementLogSqlSession.SqlStatementType c : StatementLogSqlSession.SqlStatementType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static StatementLogSqlSession.SqlStatementType valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-