java.lang.Object
java.lang.Record
org.firebirdsql.gds.ng.wire.FetchResponse
- Record Components:
status
- fetch status (ISCConstants.FETCH_OK
orISCConstants.FETCH_NO_MORE_ROWS
count
- number of rows following (in practice, either0
or1
)
- All Implemented Interfaces:
Response
- Since:
- 3.0
- Author:
- Mark Rotteveel
-
Constructor Summary
ConstructorsConstructorDescriptionFetchResponse
(int status, int count) Creates an instance of aFetchResponse
record class. -
Method Summary
Modifier and TypeMethodDescriptionint
count()
Returns the value of thecount
record component.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.int
status()
Returns the value of thestatus
record component.final String
toString()
Returns a string representation of this record class.
-
Constructor Details
-
Method Details
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared with '=='. -
status
public int status()Returns the value of thestatus
record component.- Returns:
- the value of the
status
record component
-
count
public int count()Returns the value of thecount
record component.- Returns:
- the value of the
count
record component
-