|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectnl.imsystems.atag.tags.ELFunctions
public class ELFunctions
Some array and collection functions exposed by ATag.
Method Summary | |
---|---|
static boolean |
contains(Collection c,
Object element)
Searches a Collection for presence of a given object. |
static boolean |
contains(Object[] c,
Object element)
Searches an array for presence of a given object. |
static boolean |
containsAll(Collection c,
Collection elements)
Searches a Collection for presence of a given collection. |
static boolean |
containsAll(Collection c,
Object[] elements)
Searches a Collection for presence of a given array. |
static boolean |
containsAll(Object[] c,
Collection elements)
Searches an array for presence of a given collection. |
static boolean |
containsAll(Object[] c,
Object[] elements)
Searches an array for presence of a given array. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method Detail |
---|
public static boolean contains(Collection c, Object element)
c
- The collection to searchelement
- Element to search for
public static boolean containsAll(Collection c, Collection elements)
c
- The collection to searchelements
- Elements to search for
public static boolean containsAll(Collection c, Object[] elements)
c
- The collection to searchelements
- Elements to search for
public static boolean contains(Object[] c, Object element)
c
- The array to searchelement
- Element to search for
public static boolean containsAll(Object[] c, Object[] elements)
c
- The array to searchelements
- Elements to search for
public static boolean containsAll(Object[] c, Collection elements)
c
- The array to searchelements
- Elements to search for
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |