bitronix.tm.utils
Class CollectionUtils

java.lang.Object
  extended by bitronix.tm.utils.CollectionUtils

public class CollectionUtils
extends java.lang.Object

Collection helper functions.

© Bitronix Software

Author:
lorban

Constructor Summary
CollectionUtils()
           
 
Method Summary
static boolean containsByIdentity(java.util.Collection collection, java.lang.Object toBeFound)
          Check if a collection contains a specific object by searching for it by identity instead of by using equals/hashcode.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

CollectionUtils

public CollectionUtils()
Method Detail

containsByIdentity

public static boolean containsByIdentity(java.util.Collection collection,
                                         java.lang.Object toBeFound)
Check if a collection contains a specific object by searching for it by identity instead of by using equals/hashcode.

Parameters:
collection - the collection to search in.
toBeFound - the object to search for.
Returns:
true if the collection contains the object, false otherwise.