org.jboss.dna.common.jdbc.model.api
Enum ParameterIoType

java.lang.Object
  extended by java.lang.Enum<ParameterIoType>
      extended by org.jboss.dna.common.jdbc.model.api.ParameterIoType
All Implemented Interfaces:
Serializable, Comparable<ParameterIoType>

public enum ParameterIoType
extends Enum<ParameterIoType>

Provides RDBMS supported stored procedure parameter types as enumeration set.

Author:
Sergiy Litsenko

Enum Constant Summary
IN
           
IN_OUT
           
OUT
           
RESULT
           
RET
           
UNKNOWN
           
 
Method Summary
 String getName()
           
 int getType()
           
static ParameterIoType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static ParameterIoType[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

UNKNOWN

public static final ParameterIoType UNKNOWN

IN

public static final ParameterIoType IN

IN_OUT

public static final ParameterIoType IN_OUT

OUT

public static final ParameterIoType OUT

RET

public static final ParameterIoType RET

RESULT

public static final ParameterIoType RESULT
Method Detail

values

public static final ParameterIoType[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(ParameterIoType c : ParameterIoType.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they're declared

valueOf

public static ParameterIoType 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

getType

public int getType()

getName

public String getName()


Copyright © 2008-Present JBoss a division of Red Hat. All Rights Reserved.