Package org.neo4j.jdbc
Class Neo4jParameterMetaData
- java.lang.Object
-
- org.neo4j.jdbc.Neo4jParameterMetaData
-
- All Implemented Interfaces:
ParameterMetaData,Wrapper
public abstract class Neo4jParameterMetaData extends Object implements ParameterMetaData
- Since:
- 3.0.0
- Author:
- AgileLARUS
-
-
Field Summary
-
Fields inherited from interface java.sql.ParameterMetaData
parameterModeIn, parameterModeInOut, parameterModeOut, parameterModeUnknown, parameterNoNulls, parameterNullable, parameterNullableUnknown
-
-
Constructor Summary
Constructors Constructor Description Neo4jParameterMetaData()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetParameterClassName(int param)intgetParameterCount()intgetParameterMode(int param)intgetParameterType(int param)StringgetParameterTypeName(int param)intgetPrecision(int column)intgetScale(int column)intisNullable(int param)booleanisSigned(int param)booleanisWrapperFor(Class<?> iface)<T> Tunwrap(Class<T> iface)
-
-
-
Method Detail
-
getParameterCount
public int getParameterCount() throws SQLException- Specified by:
getParameterCountin interfaceParameterMetaData- Throws:
SQLException
-
isNullable
public int isNullable(int param) throws SQLException- Specified by:
isNullablein interfaceParameterMetaData- Throws:
SQLException
-
isSigned
public boolean isSigned(int param) throws SQLException- Specified by:
isSignedin interfaceParameterMetaData- Throws:
SQLException
-
getPrecision
public int getPrecision(int column) throws SQLException- Specified by:
getPrecisionin interfaceParameterMetaData- Throws:
SQLException
-
getScale
public int getScale(int column) throws SQLException- Specified by:
getScalein interfaceParameterMetaData- Throws:
SQLException
-
getParameterType
public int getParameterType(int param) throws SQLException- Specified by:
getParameterTypein interfaceParameterMetaData- Throws:
SQLException
-
getParameterTypeName
public String getParameterTypeName(int param) throws SQLException
- Specified by:
getParameterTypeNamein interfaceParameterMetaData- Throws:
SQLException
-
getParameterClassName
public String getParameterClassName(int param) throws SQLException
- Specified by:
getParameterClassNamein interfaceParameterMetaData- Throws:
SQLException
-
getParameterMode
public int getParameterMode(int param) throws SQLException- Specified by:
getParameterModein interfaceParameterMetaData- Throws:
SQLException
-
unwrap
public <T> T unwrap(Class<T> iface) throws SQLException
- Specified by:
unwrapin interfaceWrapper- Throws:
SQLException
-
isWrapperFor
public boolean isWrapperFor(Class<?> iface) throws SQLException
- Specified by:
isWrapperForin interfaceWrapper- Throws:
SQLException
-
-