public method O2GOffersTable.findRow

Brief

Finds a row in the O2GOffersTable table by an OfferID.

Declaration
Java
O2GOfferTableRow  findRow (String id)

Parameters
id

The unique identification number of an instrument.

Details

If the row is not found, the method returns null.
Note: The returned row contains the current values of fields. The values are not automatically updated. To monitor changes, use IO2GTableListener.onChanged. The row interface is thread-safe. One can use the returned row in different threads without synchronization.

Example

Find offer by OfferID [hide]

    O2GOffersTable offersTable = (O2GOffersTable)tableManager.getTable(O2GTableType.OFFERS);
    O2GOfferTableRow offer = offersTable.findRow(mOfferID);
    System.out.println("Instrument: " + offer.getInstrument() +
                       " Bid = " + offer.getBid() +
                       " Ask = " + offer.getAsk());

Declared in O2GOffersTable

back