Package org.sqlproc.engine.type
Class SqlTextType
- java.lang.Object
-
- org.sqlproc.engine.type.SqlDefaultType
-
- org.sqlproc.engine.type.SqlTextType
-
- All Implemented Interfaces:
SqlMetaType,SqlTaggedMetaType
- Direct Known Subclasses:
JdbcTextType
public abstract class SqlTextType extends SqlDefaultType
The META type TEXT.- Author:
- Vladimir Hudec
-
-
Field Summary
-
Fields inherited from class org.sqlproc.engine.type.SqlDefaultType
logger
-
-
Constructor Summary
Constructors Constructor Description SqlTextType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Class<?>[]getClassTypes()Returns the list of Java class types related to this META type.Class<?>[]getClassTypesForDefault()Returns the list of Java class types related to this META type for SqlDefaultType processing.String[]getMetaTypes()Returns the list of names of this META type.-
Methods inherited from class org.sqlproc.engine.type.SqlDefaultType
addScalar, setParameter, setResult
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.sqlproc.engine.type.SqlMetaType
addScalarEntryLog, error, getProviderSqlType, getResult, setParameterEntryLog, setResultEntryLog
-
-
-
-
Method Detail
-
getClassTypes
public 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
public 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
-
getClassTypesForDefault
public Class<?>[] getClassTypesForDefault()
Returns the list of Java class types related to this META type for SqlDefaultType processing.- Overrides:
getClassTypesForDefaultin classSqlDefaultType- Returns:
- the list of Java class types related to this META type for SqlDefaultType processing
-
-