Skip to main content

Eclipse collections

Eclipse collections


Eclipse Collections is advance Java collection framework. It has some additional data structures and features which is not available in Java Collection Framework.

Eclipse Collections provides memory efficient implementation of Sets and Maps as well as primitive collections.

Maven Dependency:


<dependency>
  <groupId>org.eclipse.collections</groupId>
  <artifactId>eclipse-collections-api</artifactId>
  <version>9.2.0</version>
</dependency>

<dependency>
  <groupId>org.eclipse.collections</groupId>
  <artifactId>eclipse-collections</artifactId>
  <version>9.2.0</version>
</dependency>


Comparison with Java



ArrayList ( JDK )


List<String> comparison = new ArrayList<String>();
comparison.add("Bangalore");
comparison.add("Ahmedabad");
comparison.add("Pune");
comparison.add("Pune");


Fast List ( Eclipse Collection)

MutableList<String> comparison = FastList.newListWith("Bangalore", "Ahmedabad", "Pune", "Pune");



Set (JDK)


Set<String> comparison = new HashSet<String>();
comparison.add("Bangalore");
comparison.add("Ahmedabad");
comparison.add("Pune");
comparison.add("Delhi");

Unified Set ( Eclipse Collection)

Set<String> comparison = UnifiedSet.newSetWith("Bangalore", "Ahmedabad", "Pune", "Delhi");

Map (JDK)

Map<Integer, String> map = new HashMap<Integer, String>();
map.put(1, "1");
map.put(2, "2");
map.put(3, "3");


Unified Map ( Eclipse Collection)
MutableMap<Integer, String> map = UnifiedMap.newWithKeysValues(1, "1", 2, "2", 3, "3");

Conclusion:
In this blog, I've tried to provide the similar Data structure of JDK and Eclipse Collection.

Comments

Popular posts from this blog

Could not launch the product because the associated workspace is currently in use by another Eclipse application

If you are seeing following error at the beginning of the Eclipse or any RCP based product then here is the solution: Error Message: "Could not launch the product because the associated workspace is currently in use by another Eclipse application." or “Workspace in use or cannot be created chose a different one.” Solution :  go to workspace location remove file <workspace location>/.metadata/.lock Reason: Through eclipse, user can create multiple Workspace locations. One Workspace location can be edited by one user at a time. A workspace contains the data related to various project configuration and local file storage. To avoid multiple users to access the same workspace, eclipse is maintaining a ".lock" file inside the Workspace. Eclipse will remove this ".lock" file when you will close the Eclipse. But in some cases, the Eclipse will crash due to some error, due to which it could not able to remove ".lock" file from...

Cannot complete the install because one or more required items could not be found.

Error While installing Maven in Eclipse Cannot complete the install because one or more required items could not be found.   Software being installed: m2e - Maven Integration for Eclipse 1.4.0.20130601-0317 (org.eclipse.m2e.feature. feature.group 1.4.0.20130601-0317)   Missing requirement: Maven POM XML Editor 1.4.0.20130601-0317 (org.eclipse.m2e.editor.xml 1.4.0.20130601-0317) requires 'bundle org.slf4j.api 1.6.2' but it could not be found   Cannot satisfy dependency:     From: Maven Integration for Eclipse (Editors) 1.4.0.20130601-0317 (org.eclipse.m2e.editor 1.4.0.20130601-0317)     To: bundle org.eclipse.m2e.editor.xml [1.4.0,1.5.0)   Cannot satisfy dependency:     From: m2e - Maven Integration for Eclipse 1.4.0.20130601-0317 (org.eclipse.m2e.feature. feature.group 1.4.0.20130601-0317)     To: org.eclipse.m2e.editor [1.4.0.20130601-0317] Solution : 1. Goto : Help -> Install New Software 2. Ad...

how to install window builder in eclipse ?

Before we start working on Eclipse RCP we required the Window builder. Windows builder is not necessary to create the Eclipse RCP application. Using Windowbuilder, designing the RCP application will be more easy and comfortable, so Here I explain the steps to install Window Builder inEclipse environment. It is very easy to add Windw builder plug-in in it. Following are the steps. Goto “help” -> “Install New Software…” Enter following URLs as per the version of the Eclipse : Eclipse 3.7 (Indigo) http://dl.google.com/eclipse/inst/d2wbpro/latest/3.7 Eclipse 3.6 (Helios) http://dl.google.com/eclipse/inst/d2wbpro/latest/3.6 Eclipse 3.5 (Galileo) http://dl.google.com/eclipse/inst/d2wbpro/latest/3.5 Click on “Next” Click on “Next” Select radio button for “I accept the terms of the license agreements”. Click on Finish. At the end (after installation completes), it will ask to restart the Eclipse. Click on Restart option...