Boolean allString (int ColumnNumber, String compOp, String comparand)

The method returns a value indicating whether the specified comparison is true for all rows of the result set.

For example, if rsx is a Java variable of type ResultSetXml:

if rsx>>allString(3, “<”, “compare value”)…

This condition is true if in the result set represented by rsx, for all rows, the value of column 3 is less than “compare value.” This is a String comparison. Similar methods can be used for other datatypes.