接口 Output
-
- 所有已知子接口:
ResultSetOutput,UpdateCountOutput
public interface OutputCommon contract for individual return objects which can be either results (ResultSetOutput) or update counts (UpdateCountOutput).- 作者:
- Steve Ebersole
-
-
方法概要
所有方法 实例方法 抽象方法 修饰符和类型 方法 说明 booleanisResultSet()Determine if this return is a result (castable toResultSetOutput).
-
-
-
方法详细资料
-
isResultSet
boolean isResultSet()
Determine if this return is a result (castable toResultSetOutput). The alternative is that it is an update count (castable toUpdateCountOutput).- 返回:
trueindicates thatthiscan be safely cast toResultSetOutput), other wise it can be cast toUpdateCountOutput.
-
-