- object
- the object to search for.
Documentation for this section has not yet been entered.
Type Reason Java.Lang.ClassCastException if the object to look for isn't of the correct type. Java.Lang.NullPointerException if the object to look for is null and this Collection doesn't support null elements.
Tests whether this Collection contains the specified object. Returns true if and only if at least one element elem in this Collection meets following requirement: (object==null ? elem==null : object.equals(elem)).