Package org.jivesoftware.database
Enum ProfiledConnection.Type
- java.lang.Object
-
- java.lang.Enum<ProfiledConnection.Type>
-
- org.jivesoftware.database.ProfiledConnection.Type
-
- All Implemented Interfaces:
Serializable
,Comparable<ProfiledConnection.Type>
- Enclosing class:
- ProfiledConnection
public static enum ProfiledConnection.Type extends Enum<ProfiledConnection.Type>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ProfiledConnection.Type
valueOf(String name)
Returns the enum constant of this type with the specified name.static ProfiledConnection.Type[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
select
public static final ProfiledConnection.Type select
Constant for SELECT database queries.
-
update
public static final ProfiledConnection.Type update
Constant for UPDATE database queries.
-
insert
public static final ProfiledConnection.Type insert
Constant for INSERT database queries.
-
delete
public static final ProfiledConnection.Type delete
Constant for DELETE database queries.
-
-
Method Detail
-
values
public static ProfiledConnection.Type[] 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 (ProfiledConnection.Type c : ProfiledConnection.Type.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ProfiledConnection.Type valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-