OpenAPI 1.0

com.aquafold.openapi.rdbms.schema
Interface AQParameter


public interface AQParameter

This interface represents a stored procedure's or a function's parameter.


Method Summary
 String getDataType()
          To get the data type for the parameter.
 String getName()
          To get the name of the parameter.
 int getOrdinal()
          To get the ordinal value of the parameter.
 boolean isInput()
          Whether the parameter is use for input.
 

Method Detail

getName

String getName()
To get the name of the parameter.

Returns:
The name of the parameter; null if the name does not exist.

getOrdinal

int getOrdinal()
To get the ordinal value of the parameter.

Returns:
The ordinal value of the parameter; null if the ordinal does not exist.

isInput

boolean isInput()
Whether the parameter is use for input.

Returns:
true or false.

getDataType

String getDataType()
To get the data type for the parameter.

Returns:
The data type; null if data type does not exist;

OpenAPI 1.0


Copyright © 2010 AquaFold, Inc. All Rights Reserved. Use is subject to license terms.