|
Ontimize 5.2072EN | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectcom.ontimize.db.handler.DefaultSQLStatementHandler
| Field Summary | |
protected char[] |
CONFLICT_CHARS
|
protected SQLStatementBuilder.SQLConditionValuesProcessor |
queryConditionsProcessor
|
protected SQLStatementBuilder.SQLNameEval |
sqlNameEval
|
boolean |
useAsInSubqueries
|
| Constructor Summary | |
DefaultSQLStatementHandler()
|
|
| Method Summary | |
void |
addSpecialCharacters(char[] c)
Adds characters to the list of special characters. |
protected void |
changeColumnNames(EntityResult result,
java.util.List columnNames)
|
boolean |
checkColumnName(java.lang.String columnName)
Returns true if square brackets are necessary insert in this column name. |
protected java.lang.String |
createCountQuery(java.lang.String table)
|
SQLStatementBuilder.SQLStatement |
createCountQuery(java.lang.String table,
java.util.Hashtable conditions,
java.util.Vector wildcards)
Returns a SQLStatement class that stores the information
needed to execute a query that obtains the number of query records |
SQLStatementBuilder.SQLStatement |
createDeleteQuery(java.lang.String table,
java.util.Hashtable keysValues)
Returns a SQLStatement class that stores the information
needed to execute a delete query. |
SQLStatementBuilder.SQLStatement |
createInsertQuery(java.lang.String table,
java.util.Hashtable attributes)
Returns a SQLStatement class that stores the information
needed to execute a insert query. |
SQLStatementBuilder.SQLStatement |
createJoinSelectQuery(java.lang.String principalTable,
java.lang.String secondaryTable,
java.util.Vector principalKeys,
java.util.Vector secondaryKeys,
java.util.Vector principalTableRequestedColumns,
java.util.Vector secondaryTableRequestedColumns,
java.util.Hashtable principalTableConditions,
java.util.Hashtable secondaryTableConditions,
java.util.Vector wildcards,
java.util.Vector columnSorting,
boolean forceDistinct)
This class provides a implementation of the SQLConditionValuesProcessor interface.
|
SQLStatementBuilder.SQLStatement |
createJoinSelectQuery(java.lang.String mainTable,
java.lang.String secondaryTable,
java.util.Vector mainKeys,
java.util.Vector secondaryKeys,
java.util.Vector mainTableRequestedColumns,
java.util.Vector secondaryTableRequestedColumns,
java.util.Hashtable mainTableConditions,
java.util.Hashtable secondaryTableConditions,
java.util.Vector wildcards,
java.util.Vector columnSorting,
boolean forceDistinct,
boolean descending)
Returns a SQLStatement class that stores the information
needed to execute a select query against two table used a join. |
protected java.lang.String |
createQueryConditions(java.util.Hashtable conditions,
java.util.Vector wildcard,
java.util.Vector values)
Returns the condition string for a SQL Statement. |
protected java.lang.String |
createQueryConditions(java.util.Hashtable conditions,
java.util.Vector wildcardColumns,
java.util.Vector values,
boolean withWhere)
|
java.lang.String |
createQueryConditionsWithoutWhere(java.util.Hashtable conditions,
java.util.Vector wildcard,
java.util.Vector values)
Returns the condition string for a SQL Statement without WHERE clause in SQL. |
protected java.lang.String |
createSelectQuery(java.lang.String table,
java.util.Vector askedColumns)
|
protected java.lang.String |
createSelectQuery(java.lang.String table,
java.util.Vector askedColumns,
boolean forceDistinct)
|
SQLStatementBuilder.SQLStatement |
createSelectQuery(java.lang.String table,
java.util.Vector requestedColumns,
java.util.Hashtable conditions,
java.util.Vector wildcards)
Returns a SQLStatement class that stores the information
needed to execute a select query. |
SQLStatementBuilder.SQLStatement |
createSelectQuery(java.lang.String table,
java.util.Vector requestedColumns,
java.util.Hashtable conditions,
java.util.Vector wildcards,
java.util.Vector columnSorting)
Returns a SQLStatement class that stores the information
needed to execute a select query. |
SQLStatementBuilder.SQLStatement |
createSelectQuery(java.lang.String table,
java.util.Vector requestedColumns,
java.util.Hashtable conditions,
java.util.Vector wildcards,
java.util.Vector columnSorting,
boolean descending)
Returns a SQLStatement class that stores the information
needed to execute a select query. |
SQLStatementBuilder.SQLStatement |
createSelectQuery(java.lang.String table,
java.util.Vector requestedColumns,
java.util.Hashtable conditions,
java.util.Vector wildcards,
java.util.Vector columnSorting,
boolean descending,
boolean forceDistinct)
Returns a SQLStatement class that stores the information
needed to execute a select query. |
SQLStatementBuilder.SQLStatement |
createSelectQuery(java.lang.String table,
java.util.Vector requestedColumns,
java.util.Hashtable conditions,
java.util.Vector wildcards,
java.util.Vector columnSorting,
int recordCount)
Returns a SQLStatement class that stores the information
needed to execute a select query. |
SQLStatementBuilder.SQLStatement |
createSelectQuery(java.lang.String table,
java.util.Vector requestedColumns,
java.util.Hashtable conditions,
java.util.Vector wildcards,
java.util.Vector columnSorting,
int recordCount,
boolean descending)
Returns a SQLStatement class that stores the information
needed to execute a select query. |
SQLStatementBuilder.SQLStatement |
createSelectQuery(java.lang.String table,
java.util.Vector requestedColumns,
java.util.Hashtable conditions,
java.util.Vector wildcards,
java.util.Vector columnSorting,
int recordCount,
boolean descending,
boolean forceDistinct)
Returns a SQLStatement class that stores the information
needed to execute a select query. |
SQLStatementBuilder.SQLStatement |
createSelectQuery(java.lang.String table,
java.util.Vector requestedColumns,
java.util.Hashtable conditions,
java.util.Vector wildcards,
java.util.Vector columnSorting,
int recordCount,
int offset)
|
SQLStatementBuilder.SQLStatement |
createSelectQuery(java.lang.String table,
java.util.Vector requestedColumns,
java.util.Hashtable conditions,
java.util.Vector wildcards,
java.util.Vector columnSorting,
int recordCount,
int offset,
boolean descending)
|
SQLStatementBuilder.SQLStatement |
createSelectQuery(java.lang.String table,
java.util.Vector requestedColumns,
java.util.Hashtable conditions,
java.util.Vector wildcards,
java.util.Vector columnSorting,
int recordCount,
int offset,
boolean descending,
boolean forceDistinct)
|
protected java.lang.String |
createSortStatement(java.util.Vector sortColumns)
|
protected java.lang.String |
createSortStatement(java.util.Vector sortColumns,
boolean descending)
|
SQLStatementBuilder.SQLStatement |
createUpdateQuery(java.lang.String table,
java.util.Hashtable attributesValues,
java.util.Hashtable keysValues)
Returns a SQLStatement class that stores the information
needed to execute a update query. |
protected java.lang.String[] |
getColumnNames(java.sql.ResultSetMetaData rsMetaData)
|
SQLStatementBuilder.SQLConditionValuesProcessor |
getQueryConditionsProcessor()
Returns a instance of SQLConditionValuesProcessor that be
used in this class to create the condition string |
SQLStatementBuilder.SQLNameEval |
getSQLNameEval()
|
protected DBFunctionName |
hasIsolationFunction(java.util.Vector requestedColumns)
|
boolean |
isDelimited()
|
boolean |
isPageable()
|
boolean |
isUseAsInSubqueries()
|
java.lang.String |
qualify(java.lang.String col,
java.lang.String table)
Returns a String with the qualified name.
|
protected java.lang.Object |
readBinaryStream(java.io.InputStream in)
Reads an array of bytes from the stream in. |
protected java.lang.Object |
readCharacterStream(java.io.InputStream in)
Returns a String containing the characters read from the stream in.
|
protected java.lang.Object |
readCharacterStream(java.io.Reader in)
Returns a String containing the characters read from the reader in.
|
void |
resultSetToEntityResult(java.sql.ResultSet resultSet,
EntityResult entityResult,
int recordNumber,
int offset,
boolean delimited,
java.util.List columnNames)
Transforms a java.sql.ResultSet object into an Ontimize EntityResult. |
void |
resultSetToEntityResult(java.sql.ResultSet resultSet,
EntityResult entityResult,
java.util.List columnNames)
|
void |
setSQLConditionValuesProcessor(SQLStatementBuilder.SQLConditionValuesProcessor processor)
Sets the SQLConditionValuesProcessor |
void |
setSQLNameEval(SQLStatementBuilder.SQLNameEval eval)
|
void |
setUseAsInSubqueries(boolean useAsInSubqueries)
|
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
protected SQLStatementBuilder.SQLConditionValuesProcessor queryConditionsProcessor
protected SQLStatementBuilder.SQLNameEval sqlNameEval
protected char[] CONFLICT_CHARS
public boolean useAsInSubqueries
| Constructor Detail |
public DefaultSQLStatementHandler()
| Method Detail |
public boolean isUseAsInSubqueries()
isUseAsInSubqueries in interface SQLStatementHandlerpublic void setUseAsInSubqueries(boolean useAsInSubqueries)
setUseAsInSubqueries in interface SQLStatementHandlerpublic void setSQLConditionValuesProcessor(SQLStatementBuilder.SQLConditionValuesProcessor processor)
SQLConditionValuesProcessor to be used in SQLStatementBuilder
- Specified by:
setSQLConditionValuesProcessor in interface SQLStatementHandler
- Parameters:
processor - the SQLConditionValuesProcessor instance that be used
public SQLStatementBuilder.SQLStatement createCountQuery(java.lang.String table,
java.util.Hashtable conditions,
java.util.Vector wildcards)
SQLStatement class that stores the information
needed to execute a query that obtains the number of query records
createCountQuery in interface SQLStatementHandlertable - name of the table the query is executed againstconditions - condition list used in the querywildcards - column list that can use wildcards
SQLStatement class
public SQLStatementBuilder.SQLStatement createSelectQuery(java.lang.String table,
java.util.Vector requestedColumns,
java.util.Hashtable conditions,
java.util.Vector wildcards)
SQLStatement class that stores the information
needed to execute a select query.
createSelectQuery in interface SQLStatementHandlertable - name of the table the query is executed againstrequestedColumns - a Vector specifying the requested column name in the queryconditions - condition list used to created the querywildcards -
SQLStatement classSQLStatementBuilder.SQLStatement
public SQLStatementBuilder.SQLStatement createSelectQuery(java.lang.String table,
java.util.Vector requestedColumns,
java.util.Hashtable conditions,
java.util.Vector wildcards,
java.util.Vector columnSorting,
int recordCount)
SQLStatement class that stores the information
needed to execute a select query.
createSelectQuery in interface SQLStatementHandlertable - name of the table the query is executed againstrequestedColumns - a Vector specifying the requested column name in the queryconditions - condition list used to created the querywildcards - column list that can use wildcardscolumnSorting - column list where query sorting is establishedrecordCount - number of records requested in the query
SQLStatement classSQLStatementBuilder.SQLStatement
public SQLStatementBuilder.SQLStatement createSelectQuery(java.lang.String table,
java.util.Vector requestedColumns,
java.util.Hashtable conditions,
java.util.Vector wildcards,
java.util.Vector columnSorting,
int recordCount,
boolean descending)
SQLStatement class that stores the information
needed to execute a select query.
createSelectQuery in interface SQLStatementHandlertable - name of the table the query is executed againstrequestedColumns - a Vector specifying the requested column name in the queryconditions - condition list used to created the querywildcards - column list that can use wildcardscolumnSorting - column list where query sorting is establishedrecordCount - number of records requested in the querydescending - true if sorting should be descending
SQLStatement classSQLStatementBuilder.SQLStatement
public SQLStatementBuilder.SQLStatement createSelectQuery(java.lang.String table,
java.util.Vector requestedColumns,
java.util.Hashtable conditions,
java.util.Vector wildcards,
java.util.Vector columnSorting,
int recordCount,
boolean descending,
boolean forceDistinct)
SQLStatement class that stores the information
needed to execute a select query.
createSelectQuery in interface SQLStatementHandlertable - name of the table the query is executed againstrequestedColumns - a Vector specifying the requested column name in the queryconditions - condition list used to created the querywildcards - column list that can use wildcardscolumnSorting - column list where query sorting is establishedrecordCount - number of records requested in the queryforceDistinct - true if query result cannot have duplicated recordsdescending - true if sorting should be descending
SQLStatement classSQLStatementBuilder.SQLStatement
public SQLStatementBuilder.SQLStatement createSelectQuery(java.lang.String table,
java.util.Vector requestedColumns,
java.util.Hashtable conditions,
java.util.Vector wildcards,
java.util.Vector columnSorting,
int recordCount,
int offset)
createSelectQuery in interface SQLStatementHandler
public SQLStatementBuilder.SQLStatement createSelectQuery(java.lang.String table,
java.util.Vector requestedColumns,
java.util.Hashtable conditions,
java.util.Vector wildcards,
java.util.Vector columnSorting,
int recordCount,
int offset,
boolean descending)
createSelectQuery in interface SQLStatementHandler
public SQLStatementBuilder.SQLStatement createSelectQuery(java.lang.String table,
java.util.Vector requestedColumns,
java.util.Hashtable conditions,
java.util.Vector wildcards,
java.util.Vector columnSorting,
int recordCount,
int offset,
boolean descending,
boolean forceDistinct)
createSelectQuery in interface SQLStatementHandler
public SQLStatementBuilder.SQLStatement createSelectQuery(java.lang.String table,
java.util.Vector requestedColumns,
java.util.Hashtable conditions,
java.util.Vector wildcards,
java.util.Vector columnSorting)
SQLStatement class that stores the information
needed to execute a select query.
createSelectQuery in interface SQLStatementHandlertable - name of the table the query is executed againstrequestedColumns - a Vector specifying the requested column name in the queryconditions - condition list used to created the querywildcards - column list that can use wildcardscolumnSorting - column list where query sorting is established
SQLStatement classSQLStatementBuilder.SQLStatement
public SQLStatementBuilder.SQLStatement createSelectQuery(java.lang.String table,
java.util.Vector requestedColumns,
java.util.Hashtable conditions,
java.util.Vector wildcards,
java.util.Vector columnSorting,
boolean descending)
SQLStatement class that stores the information
needed to execute a select query.
createSelectQuery in interface SQLStatementHandlertable - name of the table the query is executed againstrequestedColumns - a Vector specifying the requested column name in the queryconditions - condition list used to created the querywildcards - column list that can use wildcardscolumnSorting - column list where query sorting is establisheddescending - true if sorting should be descending
SQLStatement classSQLStatementBuilder.SQLStatement
public SQLStatementBuilder.SQLStatement createSelectQuery(java.lang.String table,
java.util.Vector requestedColumns,
java.util.Hashtable conditions,
java.util.Vector wildcards,
java.util.Vector columnSorting,
boolean descending,
boolean forceDistinct)
SQLStatement class that stores the information
needed to execute a select query.
createSelectQuery in interface SQLStatementHandlertable - name of the table the query is executed againstrequestedColumns - a Vector specifying the requested column name in the queryconditions - condition list used to created the querywildcards - column list that can use wildcardscolumnSorting - column list where query sorting is establishedforceDistinct - true if query result cannot have duplicated recordsdescending - true if sorting should be descending
SQLStatement classSQLStatementBuilder.SQLStatementprotected DBFunctionName hasIsolationFunction(java.util.Vector requestedColumns)
protected java.lang.String createSortStatement(java.util.Vector sortColumns,
boolean descending)
protected java.lang.String createSortStatement(java.util.Vector sortColumns)
protected java.lang.String createCountQuery(java.lang.String table)
protected java.lang.String createSelectQuery(java.lang.String table,
java.util.Vector askedColumns,
boolean forceDistinct)
protected java.lang.String createSelectQuery(java.lang.String table,
java.util.Vector askedColumns)
protected java.lang.String createQueryConditions(java.util.Hashtable conditions,
java.util.Vector wildcardColumns,
java.util.Vector values,
boolean withWhere)
protected java.lang.String createQueryConditions(java.util.Hashtable conditions,
java.util.Vector wildcard,
java.util.Vector values)
conditions - condition list that be using for create the stringwildcard - column list that can use wildcardsvalues - vector where the value of each processed conditions is stored
public java.lang.String createQueryConditionsWithoutWhere(java.util.Hashtable conditions,
java.util.Vector wildcard,
java.util.Vector values)
createQueryConditionsWithoutWhere in interface SQLStatementHandlerconditions - condition list that be using for create the stringwildcard - column list that can use wildcardsvalues - vector where the value of each processed conditions is stored
public void setSQLNameEval(SQLStatementBuilder.SQLNameEval eval)
setSQLNameEval in interface SQLStatementHandlerpublic SQLStatementBuilder.SQLNameEval getSQLNameEval()
getSQLNameEval in interface SQLStatementHandlerpublic boolean checkColumnName(java.lang.String columnName)
If the column name has a character of the special character list, it's necessary insert column name in square brackets.
checkColumnName in interface SQLStatementHandler
public SQLStatementBuilder.SQLStatement createInsertQuery(java.lang.String table,
java.util.Hashtable attributes)
SQLStatement class that stores the information
needed to execute a insert query.
createInsertQuery in interface SQLStatementHandlertable - name of the table the query is executed againstattributes - attributes a Hashtable specifying pairs of key-value
corresponding to the attribute (or column of a table in a
database) and the value that must be stored.
public SQLStatementBuilder.SQLStatement createUpdateQuery(java.lang.String table,
java.util.Hashtable attributesValues,
java.util.Hashtable keysValues)
SQLStatement class that stores the information
needed to execute a update query.
createUpdateQuery in interface SQLStatementHandlertable - name of the table the update is executed againstattributesValues - attributesValues the data for updating the records to. The keys
specify the attributes (or columns) and the values, the values
for these columns.keysValues - keysValues the conditions that the records to be updated must
fulfill. The keys specify the attributes (or columns) and the
values, the values for these columns.
SQLStatementBuilder.SQLStatement
public SQLStatementBuilder.SQLStatement createDeleteQuery(java.lang.String table,
java.util.Hashtable keysValues)
SQLStatement class that stores the information
needed to execute a delete query.
createDeleteQuery in interface SQLStatementHandlertable - name of the table the query is executed againstkeysValues - the conditions that the records to be deleted must fulfill. The
keys specify the attributes (or columns) and the values, the
values for these columns.
public void addSpecialCharacters(char[] c)
When the query is be created if a column name contains a character of the list this column name is inserted between parenthesis in the query.
addSpecialCharacters in interface SQLStatementHandlerc - a array with the new characters
public SQLStatementBuilder.SQLStatement createJoinSelectQuery(java.lang.String principalTable,
java.lang.String secondaryTable,
java.util.Vector principalKeys,
java.util.Vector secondaryKeys,
java.util.Vector principalTableRequestedColumns,
java.util.Vector secondaryTableRequestedColumns,
java.util.Hashtable principalTableConditions,
java.util.Hashtable secondaryTableConditions,
java.util.Vector wildcards,
java.util.Vector columnSorting,
boolean forceDistinct)
SQLConditionValuesProcessor interface.
This class extends
Using classes that implements
In the next examples the basic implementations have been used:
DefaultSQLConditionValuesProcessor and permits process complex conditions
where condition key doesn't have to be the column of a table in a database.
EXPRESSION_KEY is used as condition key to indicate which is
a complex condition
Expression, Field, Operator
interfaces is necessary to define a complex condition. Each class that
implements the Expression interface has three important
parts. The left operand that can only be another expression or a class
that implements Field interface The right operand that can be
another expression or a value The operator that has to be a class that
implement Operator interface
Example for a simple expression:
Operator equalOperator=BasicOperator.EQUAL_OP;
Field field = new BasicField("columnName1");
Expression expression = new BasicExpression(field,equalOperator,"filterValue");
Hashtable conditions=new Hashtable();
conditions.put(ExtendedSQLConditionValuesProcessor.EXPRESSION_KEY,expression);
Example for a complex expression:
Operator equalOperator=BasicOperator.EQUAL_OP;
Field field1 = new BasicField("columnName1");
Expression expression1 = new BasicExpression(field1,equalOperator,"filterValue");
Field field2 = new BasicField("columnName2");
Expression expression2 = new BasicExpression(field2,BasicOperator.LESS,new Integer(10));
Expression totalExpression = new Expression(expression1,BasicOperator.AND,expression2);
Hashtable conditions=new Hashtable();
conditions.put(ExtendedSQLConditionValuesProcessor.EXPRESSION_KEY,totalExpression);
createJoinSelectQuery in interface SQLStatementHandler
SQLStatementBuilder.Expression
public java.lang.String qualify(java.lang.String col,
java.lang.String table)
String with the qualified name.
This static methods creates a qualified name from the column name and the table name. The used pattern is table_name.column_name. If the table name or the column name has special characters, square brackets are used [table_name].[column_name]
qualify in interface SQLStatementHandlercol - a String with the column nametable - a String with the table name
public SQLStatementBuilder.SQLStatement createJoinSelectQuery(java.lang.String mainTable,
java.lang.String secondaryTable,
java.util.Vector mainKeys,
java.util.Vector secondaryKeys,
java.util.Vector mainTableRequestedColumns,
java.util.Vector secondaryTableRequestedColumns,
java.util.Hashtable mainTableConditions,
java.util.Hashtable secondaryTableConditions,
java.util.Vector wildcards,
java.util.Vector columnSorting,
boolean forceDistinct,
boolean descending)
SQLStatement class that stores the information
needed to execute a select query against two table used a join.
createJoinSelectQuery in interface SQLStatementHandlermainTable - name of the principal table the query is executed againstsecondaryTable - name of the secondary table the query is executed againstmainKeys - a Vector specifying the column names of the principal table that
be used to combine the two tablessecondaryKeys - a Vector specifying the column names of the secondary table that
be used to combine the two tablesmainTableRequestedColumns - column list that be requested in the query from principal tablesecondaryTableRequestedColumns - column list that be requested in the query from secondary tablemainTableConditions - a Hashtable specifying conditions that must comply the set of
records returned from principal tablesecondaryTableConditions - a Hashtable specifying conditions that must comply the set of
records returned from secondary tablewildcards - column list which wildcards can be used incolumnSorting - column list where query sorting is establishedforceDistinct - true if query result cannot have duplicated recordsdescending - true if sorting should be descending
SQLStatement class which stores the SQL Statement
and the required valuespublic SQLStatementBuilder.SQLConditionValuesProcessor getQueryConditionsProcessor()
SQLConditionValuesProcessor that be
used in this class to create the condition string
getQueryConditionsProcessor in interface SQLStatementHandlerSQLConditionValuesProcessor classpublic boolean isPageable()
isPageable in interface SQLStatementHandlerpublic boolean isDelimited()
isDelimited in interface SQLStatementHandler
public void resultSetToEntityResult(java.sql.ResultSet resultSet,
EntityResult entityResult,
java.util.List columnNames)
throws java.lang.Exception
resultSetToEntityResult in interface SQLStatementHandlerjava.lang.Exception
public void resultSetToEntityResult(java.sql.ResultSet resultSet,
EntityResult entityResult,
int recordNumber,
int offset,
boolean delimited,
java.util.List columnNames)
throws java.lang.Exception
EntityResult. The columns in the ResultSet are the keys in the
EntityResult, and the values for the columns are stored in Vector objects
corresponding to the keys in the EntityResult.
The following getxxxxx ResulSet methods are used for getting column data:
resultSetToEntityResult in interface SQLStatementHandlerresultSet - the source ResultSetentityResult - the destination EntityResult. It has a Hashtable of Vectors
structure.recordNumber - Number of records to queryoffset - number of the row where startdelimited - If delimited is true then all the resultSet must be queried into
the EntityResult, because the original query that generated the
ResultSet only returns the number of records specified in
recordNumber. If delimited is false then this
method only read the specified recordNumber from
the ResultSet into the EntityResultcolumnNames - Names of the columns to return in the EntityResult. If this
parameter is null or empty then return exactly the same names in the
ResultSet
java.lang.Exception - if any error (database, etc.) occurs
protected void changeColumnNames(EntityResult result,
java.util.List columnNames)
protected java.lang.String[] getColumnNames(java.sql.ResultSetMetaData rsMetaData)
rsMetaData - Database metadata. See custom implementation at MySQLSQLStatementHandler.
protected java.lang.Object readCharacterStream(java.io.InputStream in)
in.
No character conversion is performed.
in -
protected java.lang.Object readCharacterStream(java.io.Reader in)
in.
No character conversion is performed.
in -
protected java.lang.Object readBinaryStream(java.io.InputStream in)
in.
in -
|
Ontimize | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||