Collections.Set

Description

Utility functions Java.util.Set

Functions

NameSignature and Synopsis
createHashSetObject createHashSet ()
Create and return the instance of HashSet.
createHashSetWithIdObject createHashSetWithId ( String setId )
Create and return instance of HashSet.
createLinkedHashSetObject createLinkedHashSet ( )
Create and return the instance of LinkedHashSet.
createLinkedHashSetWithIdObject createLinkedHashSetWithId ( String setId )
Create and return instance of LinkedHashSet.
createSetObject createSet ( String className )
Create and return instance of user specified Set implementation.
createSetWithIdObject createSetWithId ( String className, String setId )
Create and return instance of user specified Set implementation for the given setID.
createTreeSetObject createTreeSet ( )
Create and return the instance of TreeSet.
createTreeSetWithIdObject createTreeSetWithId ( String setId )
Create and return instance of TreeSet.
deleteSetObject deleteSet ( String setId )
Deletes the instance of set for the given setId.
This function can not be used if the collection is created with createSet().
getSetObject getSet ( String setId )
Returns the instance of Set for the given setId.
This function can not be used when a set is created using createSet(), createHashSet(), createLinkedHashSet() and createTreeSet() functions.