i have ArrayList contains object named as AccountProductCode it has three parameter which is like for e.g.
AccountProductCode accprocode = new AccountProductCode();
accprocode.setAPPART("002");
accprocode.setAPCODE("PC1");
finalList.add(accprocode);
so here suppose list contain data like
APPART APCODE
001 PC1
002 PC2
003 PC3
004 PC4
*AL PC1
i need to sort data like if APART *AL has same APCODE which is like other APART then i need exclude that APCODE. so the list will be like
APCODE
PC1
PC2
PC3
PC4
how can i do the program using ArrayList don't use Set..
and list should be sorted...
kindly check my new exact statment....Builds and returns a List object will all AccountProductCode objects for the participantID and participant ID *AL. If a product code exists for participantID and *AL, exclude the product code for *AL. The list should be sorted by the product code value.
Thanks Vinod
Setfor it? It does exactly what you want. – Björn Pollex May 24 '11 at 9:17