Skip to content

Commit

Permalink
Merge pull request eugenp#8979 from sampada07/JAVA-624
Browse files Browse the repository at this point in the history
JAVA 624: Added new module java-collections-maps-3
  • Loading branch information
jzheaux authored Apr 3, 2020
2 parents 3d7346b + 699455a commit 65d198a
Show file tree
Hide file tree
Showing 7 changed files with 38 additions and 4 deletions.
3 changes: 1 addition & 2 deletions java-collections-maps-2/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,4 @@ This module contains articles about Map data structures in Java.
- [Sort a HashMap in Java](https://www.baeldung.com/java-hashmap-sort)
- [Finding the Highest Value in a Java Map](https://www.baeldung.com/java-find-map-max)
- [Initialize a HashMap in Java](https://www.baeldung.com/java-initialize-hashmap)
- [Java TreeMap vs HashMap](https://www.baeldung.com/java-treemap-vs-hashmap)
- More articles: [[<-- prev>]](/../java-collections-maps)
- More articles: [[<-- prev>]](/java-collections-maps) [[next -->]](/java-collections-maps-3)
8 changes: 8 additions & 0 deletions java-collections-maps-3/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
## Java Collections Cookbooks and Examples

This module contains articles about Map data structures in Java.

### Relevant Articles:
- [Java TreeMap vs HashMap](https://www.baeldung.com/java-treemap-vs-hashmap)
- [Comparing Two HashMaps in Java](https://www.baeldung.com/java-compare-hashmaps)
- More articles: [[<-- prev>]](/java-collections-maps-2)
26 changes: 26 additions & 0 deletions java-collections-maps-3/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>java-collections-maps-3</artifactId>
<version>0.1.0-SNAPSHOT</version>
<name>java-collections-maps-3</name>
<packaging>jar</packaging>

<parent>
<groupId>com.baeldung</groupId>
<artifactId>parent-java</artifactId>
<version>0.0.1-SNAPSHOT</version>
<relativePath>../parent-java</relativePath>
</parent>

<dependencies>

</dependencies>

<properties>

</properties>

</project>
3 changes: 1 addition & 2 deletions java-collections-maps/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@ This module contains articles about Map data structures in Java.
- [How to Store Duplicate Keys in a Map in Java?](https://www.baeldung.com/java-map-duplicate-keys)
- [Get the Key for a Value from a Java Map](https://www.baeldung.com/java-map-key-from-value)
- [How to Check If a Key Exists in a Map](https://www.baeldung.com/java-map-key-exists)
- [Comparing Two HashMaps in Java](https://www.baeldung.com/java-compare-hashmaps)
- [Immutable Map Implementations in Java](https://www.baeldung.com/java-immutable-maps)
- [Guide to Apache Commons MultiValuedMap](https://www.baeldung.com/apache-commons-multi-valued-map)
- [The Java HashMap Under the Hood](https://www.baeldung.com/java-hashmap-advanced)
- More articles: [[next -->]](/../java-collections-maps-2)
- More articles: [[next -->]](/java-collections-maps-2)
2 changes: 2 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -455,6 +455,7 @@
<module>java-collections-conversions-2</module>
<module>java-collections-maps</module>
<module>java-collections-maps-2</module>
<module>java-collections-maps-3</module>
<!-- <module>java-ee-8-security-api</module> --> <!-- long running -->

<module>javafx</module>
Expand Down Expand Up @@ -966,6 +967,7 @@
<module>java-collections-conversions-2</module>
<module>java-collections-maps</module>
<module>java-collections-maps-2</module>
<module>java-collections-maps-3</module>
<!-- <module>java-ee-8-security-api</module> --> <!-- long running -->

<module>javafx</module>
Expand Down

0 comments on commit 65d198a

Please sign in to comment.