Java Doc for SetUniqueList.java in  » Library » Apache-common-Collections » org » apache » commons » collections » list » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Library » Apache common Collections » org.apache.commons.collections.list 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


org.apache.commons.collections.list.AbstractListDecorator
   org.apache.commons.collections.list.AbstractSerializableListDecorator
      org.apache.commons.collections.list.SetUniqueList

SetUniqueList
public class SetUniqueList extends AbstractSerializableListDecorator (Code)
Decorates a List to ensure that no duplicates are present much like a Set.

The List interface makes certain assumptions/requirements. This implementation breaks these in certain ways, but this is merely the result of rejecting duplicates. Each violation is explained in the method, but it should not affect you. Bear in mind that Sets require immutable objects to function correctly.

The org.apache.commons.collections.set.ListOrderedSet ListOrderedSet class provides an alternative approach, by wrapping an existing Set and retaining insertion order in the iterator.

This class is Serializable from Commons Collections 3.1.
since:
   Commons Collections 3.0
version:
   $Revision: 155406 $ $Date: 2005-02-26 12:55:26 +0000 (Sat, 26 Feb 2005) $
author:
   Matthew Hawthorne
author:
   Stephen Colebourne
author:
   Tom Dunham


Inner Class :static class SetListIterator extends AbstractIteratorDecorator
Inner Class :static class SetListListIterator extends AbstractListIteratorDecorator

Field Summary
final protected  Setset
     Internal Set to maintain uniqueness.

Constructor Summary
protected  SetUniqueList(List list, Set set)
     Constructor that wraps (not copies) the List and specifies the set to use.

Method Summary
public  booleanadd(Object object)
     Adds an element to the list if it is not already present.

(Violation) The List interface requires that this method returns true always.

public  voidadd(int index, Object object)
     Adds an element to a specific index in the list if it is not already present.

(Violation) The List interface makes the assumption that the element is always inserted.

public  booleanaddAll(Collection coll)
     Adds an element to the end of the list if it is not already present.

(Violation) The List interface makes the assumption that the element is always inserted.

public  booleanaddAll(int index, Collection coll)
     Adds a collection of objects to the end of the list avoiding duplicates.

Only elements that are not already in this list will be added, and duplicates from the specified collection will be ignored.

(Violation) The List interface makes the assumption that the elements are always inserted.

public  SetasSet()
     Gets an unmodifiable view as a Set.
public  voidclear()
    
public  booleancontains(Object object)
    
public  booleancontainsAll(Collection coll)
    
public static  SetUniqueListdecorate(List list)
     Factory method to create a SetList using the supplied list to retain order.
public  Iteratoriterator()
    
public  ListIteratorlistIterator()
    
public  ListIteratorlistIterator(int index)
    
public  booleanremove(Object object)
    
public  Objectremove(int index)
    
public  booleanremoveAll(Collection coll)
    
public  booleanretainAll(Collection coll)
    
public  Objectset(int index, Object object)
     Sets the value at the specified index avoiding duplicates.
public  ListsubList(int fromIndex, int toIndex)
    

Field Detail
set
final protected Set set(Code)
Internal Set to maintain uniqueness.




Constructor Detail
SetUniqueList
protected SetUniqueList(List list, Set set)(Code)
Constructor that wraps (not copies) the List and specifies the set to use.

The set and list must both be correctly initialised to the same elements.
Parameters:
  set - the set to decorate, must not be null
Parameters:
  list - the list to decorate, must not be null
throws:
  IllegalArgumentException - if set or list is null





Method Detail
add
public boolean add(Object object)(Code)
Adds an element to the list if it is not already present.

(Violation) The List interface requires that this method returns true always. However this class may return false because of the Set behaviour.
Parameters:
  object - the object to add true if object was added




add
public void add(int index, Object object)(Code)
Adds an element to a specific index in the list if it is not already present.

(Violation) The List interface makes the assumption that the element is always inserted. This may not happen with this implementation.
Parameters:
  index - the index to insert at
Parameters:
  object - the object to add




addAll
public boolean addAll(Collection coll)(Code)
Adds an element to the end of the list if it is not already present.

(Violation) The List interface makes the assumption that the element is always inserted. This may not happen with this implementation.
Parameters:
  coll - the collection to add




addAll
public boolean addAll(int index, Collection coll)(Code)
Adds a collection of objects to the end of the list avoiding duplicates.

Only elements that are not already in this list will be added, and duplicates from the specified collection will be ignored.

(Violation) The List interface makes the assumption that the elements are always inserted. This may not happen with this implementation.
Parameters:
  index - the index to insert at
Parameters:
  coll - the collection to add in iterator order true if this collection changed




asSet
public Set asSet()(Code)
Gets an unmodifiable view as a Set. an unmodifiable set view



clear
public void clear()(Code)



contains
public boolean contains(Object object)(Code)



containsAll
public boolean containsAll(Collection coll)(Code)



decorate
public static SetUniqueList decorate(List list)(Code)
Factory method to create a SetList using the supplied list to retain order.

If the list contains duplicates, these are removed (first indexed one kept). A HashSet is used for the set behaviour.
Parameters:
  list - the list to decorate, must not be null
throws:
  IllegalArgumentException - if list is null




iterator
public Iterator iterator()(Code)



listIterator
public ListIterator listIterator()(Code)



listIterator
public ListIterator listIterator(int index)(Code)



remove
public boolean remove(Object object)(Code)



remove
public Object remove(int index)(Code)



removeAll
public boolean removeAll(Collection coll)(Code)



retainAll
public boolean retainAll(Collection coll)(Code)



set
public Object set(int index, Object object)(Code)
Sets the value at the specified index avoiding duplicates.

The object is set into the specified index. Afterwards, any previous duplicate is removed If the object is not already in the list then a normal set occurs. If it is present, then the old version is removed.
Parameters:
  index - the index to insert at
Parameters:
  object - the object to set the previous object




subList
public List subList(int fromIndex, int toIndex)(Code)




Methods inherited from org.apache.commons.collections.list.AbstractListDecorator
public void add(int index, Object object)(Code)(Java Doc)
public boolean addAll(int index, Collection coll)(Code)(Java Doc)
public Object get(int index)(Code)(Java Doc)
protected List getList()(Code)(Java Doc)
public int indexOf(Object object)(Code)(Java Doc)
public int lastIndexOf(Object object)(Code)(Java Doc)
public ListIterator listIterator()(Code)(Java Doc)
public ListIterator listIterator(int index)(Code)(Java Doc)
public Object remove(int index)(Code)(Java Doc)
public Object set(int index, Object object)(Code)(Java Doc)
public List subList(int fromIndex, int toIndex)(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.