Skip to content

Commit 99b8077

Browse files
committed
[BAEL-10302] - Moved articles to core-java-collections
1 parent 60697a3 commit 99b8077

7 files changed

Lines changed: 14 additions & 9 deletions

File tree

core-java-collections/README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,3 +43,10 @@
4343
- [Converting a Collection to ArrayList in Java](https://www.baeldung.com/java-convert-collection-arraylist)
4444
- [Java 8 Streams: Find Items From One List Based On Values From Another List](https://www.baeldung.com/java-streams-find-list-items)
4545
- [Combining Different Types of Collections in Java](https://www.baeldung.com/java-combine-collections)
46+
- [Sorting in Java](http://www.baeldung.com/java-sorting)
47+
- [A Guide to the Java LinkedList](http://www.baeldung.com/java-linkedlist)
48+
- [Java List UnsupportedOperationException](http://www.baeldung.com/java-list-unsupported-operation-exception)
49+
- [Join and Split Arrays and Collections in Java](http://www.baeldung.com/java-join-and-split)
50+
- [Check If Two Lists are Equal in Java](http://www.baeldung.com/java-test-a-list-for-ordinality-and-equality)
51+
- [Java List Initialization in One Line](https://www.baeldung.com/java-init-list-one-line)
52+
- [ClassCastException: Arrays$ArrayList cannot be cast to ArrayList](https://www.baeldung.com/java-classcastexception-arrays-arraylist)

core-java-collections/pom.xml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,12 @@
5656
<artifactId>commons-exec</artifactId>
5757
<version>1.3</version>
5858
</dependency>
59+
<dependency>
60+
<groupId>org.projectlombok</groupId>
61+
<artifactId>lombok</artifactId>
62+
<version>${lombok.version}</version>
63+
<scope>provided</scope>
64+
</dependency>
5965
</dependencies>
6066

6167
<properties>
@@ -67,5 +73,6 @@
6773
<avaitility.version>1.7.0</avaitility.version>
6874
<assertj.version>3.11.1</assertj.version>
6975
<eclipse.collections.version>7.1.0</eclipse.collections.version>
76+
<lombok.version>1.16.12</lombok.version>
7077
</properties>
7178
</project>

core-java/src/main/java/com/baeldung/classcastexception/ClassCastException.java renamed to core-java-collections/src/main/java/com/baeldung/classcastexception/ClassCastException.java

File renamed without changes.

core-java/src/test/java/com/baeldung/java/listInitialization/ListInitializationUnitTest.java renamed to core-java-collections/src/test/java/com/baeldung/java/listInitialization/ListInitializationUnitTest.java

File renamed without changes.

core-java/src/test/java/org/baeldung/java/sorting/Employee.java renamed to core-java-collections/src/test/java/org/baeldung/java/sorting/Employee.java

File renamed without changes.

core-java/src/test/java/org/baeldung/java/sorting/JavaSortingUnitTest.java renamed to core-java-collections/src/test/java/org/baeldung/java/sorting/JavaSortingUnitTest.java

File renamed without changes.

core-java/README.md

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
- [Guide to the Fork/Join Framework in Java](http://www.baeldung.com/java-fork-join)
1111
- [How to Print Screen in Java](http://www.baeldung.com/print-screen-in-java)
1212
- [A Guide To Java Regular Expressions API](http://www.baeldung.com/regular-expressions-java)
13-
- [Sorting in Java](http://www.baeldung.com/java-sorting)
1413
- [Getting Started with Java Properties](http://www.baeldung.com/java-properties)
1514
- [Pattern Search with Grep in Java](http://www.baeldung.com/grep-in-java)
1615
- [URL Encoding and Decoding in Java](http://www.baeldung.com/java-url-encoding-decoding)
@@ -39,7 +38,6 @@
3938
- [Quick Guide to Java Stack](http://www.baeldung.com/java-stack)
4039
- [Guide to java.util.Formatter](http://www.baeldung.com/java-string-formatter)
4140
- [Guide to the Cipher Class](http://www.baeldung.com/java-cipher-class)
42-
- [Implementing a Binary Tree in Java](http://www.baeldung.com/java-binary-tree)
4341
- [A Guide to ThreadLocalRandom in Java](http://www.baeldung.com/java-thread-local-random)
4442
- [Compiling Java *.class Files with javac](http://www.baeldung.com/javac)
4543
- [A Guide to Iterator in Java](http://www.baeldung.com/java-iterator)
@@ -49,15 +47,10 @@
4947
- [A Practical Guide to DecimalFormat](http://www.baeldung.com/java-decimalformat)
5048
- [How to Detect the OS Using Java](http://www.baeldung.com/java-detect-os)
5149
- [ASCII Art in Java](http://www.baeldung.com/ascii-art-in-java)
52-
- [Finding Max/Min of a List or Collection](http://www.baeldung.com/java-collection-min-max)
5350
- [What is the serialVersionUID?](http://www.baeldung.com/java-serial-version-uid)
5451
- [A Guide To UDP In Java](http://www.baeldung.com/udp-in-java)
55-
- [A Guide to the Java LinkedList](http://www.baeldung.com/java-linkedlist)
5652
- [A Guide to the ResourceBundle](http://www.baeldung.com/java-resourcebundle)
5753
- [Class Loaders in Java](http://www.baeldung.com/java-classloaders)
58-
- [Java List UnsupportedOperationException](http://www.baeldung.com/java-list-unsupported-operation-exception)
59-
- [Join and Split Arrays and Collections in Java](http://www.baeldung.com/java-join-and-split)
60-
- [Check If Two Lists are Equal in Java](http://www.baeldung.com/java-test-a-list-for-ordinality-and-equality)
6154
- [Sending Emails with Java](http://www.baeldung.com/java-email)
6255
- [Introduction to SSL in Java](http://www.baeldung.com/java-ssl)
6356
- [Java KeyStore API](http://www.baeldung.com/java-keystore)
@@ -80,8 +73,6 @@
8073
- [Getting a File’s Mime Type in Java](http://www.baeldung.com/java-file-mime-type)
8174
- [Common Java Exceptions](http://www.baeldung.com/java-common-exceptions)
8275
- [Java Constructors vs Static Factory Methods](https://www.baeldung.com/java-constructors-vs-static-factory-methods)
83-
- [Java List Initialization in One Line](https://www.baeldung.com/java-init-list-one-line)
84-
- [ClassCastException: Arrays$ArrayList cannot be cast to ArrayList](https://www.baeldung.com/java-classcastexception-arrays-arraylist)
8576
- [Throw Exception in Optional in Java 8](https://www.baeldung.com/java-optional-throw-exception)
8677
- [Add a Character to a String at a Given Position](https://www.baeldung.com/java-add-character-to-string)
8778
- [Calculating the nth Root in Java](https://www.baeldung.com/java-nth-root)

0 commit comments

Comments
 (0)