Package org.sqlproc.engine.type
Interface SqlTaggedMetaType
-
- All Superinterfaces:
SqlMetaType
- All Known Implementing Classes:
JdbcBigDecimalType,JdbcBigIntegerType,JdbcBlobType,JdbcBooleanType,JdbcByteArrayType,JdbcByteArrayWrapperType,JdbcByteType,JdbcCharType,JdbcClobType,JdbcDateTimeType,JdbcDateType,JdbcDefaultType,JdbcDoubleType,JdbcEnumIntegerType,JdbcEnumStringType,JdbcFloatType,JdbcFromDateType,JdbcInstantType,JdbcIntegerType,JdbcLocalDateTimeType,JdbcLocalDateType,JdbcLocalTimeType,JdbcLongType,JdbcOracleCursorType,JdbcOtherType,JdbcShortType,JdbcStringType,JdbcTextType,JdbcTimestampType,JdbcTimeType,JdbcToDateType,SqlBigDecimalType,SqlBigIntegerType,SqlBlobType,SqlBooleanType,SqlByteArrayType,SqlByteType,SqlCharType,SqlClobType,SqlDateTimeType,SqlDateType,SqlDefaultType,SqlDoubleType,SqlEnumIntegerType,SqlEnumStringType,SqlFloatType,SqlFromDateType,SqlIdentityType,SqlInstantType,SqlIntegerType,SqlLocalDateTimeType,SqlLocalDateType,SqlLocalTimeType,SqlLongType,SqlOutValueType,SqlShortType,SqlStringType,SqlTextType,SqlTimestampType,SqlTimeType,SqlToDateType
public interface SqlTaggedMetaType extends SqlMetaType
The common ancestor of all META types. These internal types are devoted for the special processing of the input/output values.- Author:
- Vladimir Hudec
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Class<?>[]getClassTypes()Returns the list of Java class types related to this META type.String[]getMetaTypes()Returns the list of names of this META type.-
Methods inherited from interface org.sqlproc.engine.type.SqlMetaType
addScalar, addScalarEntryLog, error, getProviderSqlType, getResult, setParameter, setParameterEntryLog, setResult, setResultEntryLog
-
-
-
-
Method Detail
-
getClassTypes
Class<?>[] getClassTypes()
Returns the list of Java class types related to this META type.- Returns:
- the list of Java class types related to this META type
-
getMetaTypes
String[] getMetaTypes()
Returns the list of names of this META type. These names can be used in the META SQL statements.- Returns:
- list of names of this META type. These names can be used in the META SQL statements
-
-