Package org.firebirdsql.jdbc
Enum FBStatement.StatementResult
- java.lang.Object
- 
- java.lang.Enum<FBStatement.StatementResult>
- 
- org.firebirdsql.jdbc.FBStatement.StatementResult
 
 
- 
- All Implemented Interfaces:
- java.io.Serializable,- java.lang.Comparable<FBStatement.StatementResult>
 - Enclosing class:
- FBStatement
 
 protected static enum FBStatement.StatementResult extends java.lang.Enum<FBStatement.StatementResult> The current result of a statement.
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description NO_MORE_RESULTSRESULT_SETRESULT_SET_WITH_UPDATE_COUNTUPDATE_COUNT
 - 
Method SummaryAll Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description booleanisResultSet()abstract FBStatement.StatementResultnextResult()static FBStatement.StatementResultvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static FBStatement.StatementResult[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
RESULT_SETpublic static final FBStatement.StatementResult RESULT_SET 
 - 
RESULT_SET_WITH_UPDATE_COUNTpublic static final FBStatement.StatementResult RESULT_SET_WITH_UPDATE_COUNT 
 - 
UPDATE_COUNTpublic static final FBStatement.StatementResult UPDATE_COUNT 
 - 
NO_MORE_RESULTSpublic static final FBStatement.StatementResult NO_MORE_RESULTS 
 
- 
 - 
Method Detail- 
valuespublic static FBStatement.StatementResult[] values() Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (FBStatement.StatementResult c : FBStatement.StatementResult.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static FBStatement.StatementResult valueOf(java.lang.String name) Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
- name- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
- java.lang.IllegalArgumentException- if this enum type has no constant with the specified name
- java.lang.NullPointerException- if the argument is null
 
 - 
nextResultpublic abstract FBStatement.StatementResult nextResult() - Returns:
- Next result
 
 - 
isResultSetpublic final boolean isResultSet() 
 
- 
 
-