nl.innovationinvestments.cheyenne.engine.components
Enum Sql.SqlOutType
java.lang.Object
java.lang.Enum<Sql.SqlOutType>
nl.innovationinvestments.cheyenne.engine.components.Sql.SqlOutType
- All Implemented Interfaces:
- Serializable, Comparable<Sql.SqlOutType>
- Enclosing class:
- Sql
public static enum Sql.SqlOutType
- extends Enum<Sql.SqlOutType>
Enum for Out parameter type
|
Method Summary |
static Sql.SqlOutType |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static Sql.SqlOutType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared. |
INT
public static final Sql.SqlOutType INT
NUM
public static final Sql.SqlOutType NUM
VARCHAR
public static final Sql.SqlOutType VARCHAR
values
public static Sql.SqlOutType[] 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 (Sql.SqlOutType c : Sql.SqlOutType.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static Sql.SqlOutType 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 name
NullPointerException - if the argument is null
Copyright © 2013 InnovationInvestments. All rights reserved.