Skip to content

Commit de496d4

Browse files
committed
Merge branch 'master' into BAEL-16633
2 parents fabf099 + cd368ca commit de496d4

File tree

170 files changed

+897
-667
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

170 files changed

+897
-667
lines changed

algorithms-miscellaneous-3/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,6 @@ This module contains articles about algorithms. Some classes of algorithms, e.g.
1616
- [Efficient Word Frequency Calculator in Java](https://www.baeldung.com/java-word-frequency)
1717
- [Interpolation Search in Java](https://www.baeldung.com/java-interpolation-search)
1818
- [The K-Means Clustering Algorithm in Java](https://www.baeldung.com/java-k-means-clustering-algorithm)
19+
- [Creating a Custom Annotation in Java](https://www.baeldung.com/java-custom-annotation)
20+
- [Breadth-First Search Algorithm in Java](https://www.baeldung.com/java-breadth-first-search)
1921
- More articles: [[<-- prev]](/algorithms-miscellaneous-2) [[next -->]](/algorithms-miscellaneous-4)

algorithms-miscellaneous-4/README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
## Algorithms - Miscellaneous
22

3-
This module contains articles about algorithms. Some classes of algorithms, e.g., [sorting](/../algorithms-sorting) and
4-
[genetic algorithms](/../algorithms-genetic), have their own dedicated modules.
3+
This module contains articles about algorithms. Some classes of algorithms, e.g., [sorting](https://github.com/eugenp/tutorials/blob/algorithms-sorting) and [genetic algorithms](https://github.com/eugenp/tutorials/blob/algorithms-genetic), have their own dedicated modules.
54

65
### Relevant articles:
76

@@ -12,4 +11,4 @@ This module contains articles about algorithms. Some classes of algorithms, e.g.
1211
- [Find Substrings That Are Palindromes in Java](https://www.baeldung.com/java-palindrome-substrings)
1312
- [Find the Longest Substring without Repeating Characters](https://www.baeldung.com/java-longest-substring-without-repeated-characters)
1413
- [Permutations of an Array in Java](https://www.baeldung.com/java-array-permutations)
15-
- More articles: [[<-- prev]](/../algorithms-miscellaneous-3) [[next -->]](/../algorithms-miscellaneous-5)
14+
- More articles: [[<-- prev]](/algorithms-miscellaneous-3) [[next -->]](/algorithms-miscellaneous-5)

algorithms-sorting/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,4 @@ This module contains articles about sorting algorithms.
1717
- [Sorting Strings by Contained Numbers in Java](https://www.baeldung.com/java-sort-strings-contained-numbers)
1818
- [Radix Sort in Java](https://www.baeldung.com/java-radix-sort)
1919
- [Sorting a String Alphabetically in Java](https://www.baeldung.com/java-sort-string-alphabetically)
20+
- [Bucket Sort in Java](https://www.baeldung.com/java-bucket-sort)

core-groovy-2/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,5 @@ This module contains articles about core Groovy concepts
1212
- [Concatenate Strings with Groovy](https://www.baeldung.com/groovy-concatenate-strings)
1313
- [Metaprogramming in Groovy](https://www.baeldung.com/groovy-metaprogramming)
1414
- [A Quick Guide to Working with Web Services in Groovy](https://www.baeldung.com/groovy-web-services)
15+
- [Categories in Groovy](https://www.baeldung.com/groovy-categories)
1516
- [[<-- Prev]](/core-groovy)

core-java-modules/core-java-annotations/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,5 @@
88
- [Java @SafeVarargs Annotation](https://www.baeldung.com/java-safevarargs)
99
- [Java @Deprecated Annotation](https://www.baeldung.com/java-deprecated)
1010
- [Overview of Java Built-in Annotations](https://www.baeldung.com/java-default-annotations)
11-
- [Creating a Custom Annotation in Java](https://www.baeldung.com/java-custom-annotation)
11+
- [Creating a Custom Annotation in Java](https://www.baeldung.com/java-custom-annotation)
12+
- [Efficient Word Frequency Calculator in Java](https://www.baeldung.com/java-word-frequency)

core-java-modules/core-java-collections-2/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
- [Sorting in Java](https://www.baeldung.com/java-sorting)
1313
- [Getting the Size of an Iterable in Java](https://www.baeldung.com/java-iterable-size)
1414
- [Java Null-Safe Streams from Collections](https://www.baeldung.com/java-null-safe-streams-from-collections)
15-
15+
- [Operating on and Removing an Item from Stream](https://www.baeldung.com/java-use-remove-item-stream)

core-java-modules/core-java-collections-list-2/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,5 @@ This module contains articles about the Java List collection
1111
- [Ways to Iterate Over a List in Java](https://www.baeldung.com/java-iterate-list)
1212
- [Flattening Nested Collections in Java](http://www.baeldung.com/java-flatten-nested-collections)
1313
- [Intersection of Two Lists in Java](https://www.baeldung.com/java-lists-intersection)
14-
- [[<-- Prev]](/core-java-modules/core-java-collections-list)[[Next -->]](/core-java-modules/core-java-collections-list-3)
14+
- [Searching for a String in an ArrayList](https://www.baeldung.com/java-search-string-arraylist)
15+
- [[<-- Prev]](/core-java-modules/core-java-collections-list)[[Next -->]](/core-java-modules/core-java-collections-list-3)

core-java-modules/core-java-exceptions/README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,8 @@ This module contains articles about core java exceptions
1212
- [“Sneaky Throws” in Java](https://www.baeldung.com/java-sneaky-throws)
1313
- [The StackOverflowError in Java](https://www.baeldung.com/java-stack-overflow-error)
1414
- [Checked and Unchecked Exceptions in Java](https://www.baeldung.com/java-checked-unchecked-exceptions)
15-
15+
- [Java – Try with Resources](https://www.baeldung.com/java-try-with-resources)
16+
- [Java Global Exception Handler](https://www.baeldung.com/java-global-exception-handler)
17+
- [Common Java Exceptions](https://www.baeldung.com/java-common-exceptions)
18+
- [Throw Exception in Optional in Java 8](https://www.baeldung.com/java-optional-throw-exception)
19+
- [How to Find an Exception’s Root Cause in Java](https://www.baeldung.com/java-exception-root-cause)

core-java-modules/core-java-io-2/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,5 @@
33

44
- [Create a File in a Specific Directory in Java](https://www.baeldung.com/java-create-file-in-directory)
55
- [A Guide to the Java FileReader Class](https://www.baeldung.com/java-filereader)
6-
6+
- [The Java File Class](https://www.baeldung.com/java-io-file)
7+
- [Java FileWriter](https://www.baeldung.com/java-filewriter)

core-java-modules/core-java-lang-oop-3/README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,12 @@ This module contains articles about Object-oriented programming (OOP) in Java
77
- [Access Modifiers in Java](https://www.baeldung.com/java-access-modifiers)
88
- [Guide to the super Java Keyword](https://www.baeldung.com/java-super)
99
- [Guide to the this Java Keyword](https://www.baeldung.com/java-this)
10-
- [Java Public Access Modifier](https://www.baeldung.com/java-public-keyword)
10+
- [Java ‘public’ Access Modifier](https://www.baeldung.com/java-public-keyword)
1111
- [Composition, Aggregation and Association in Java](https://www.baeldung.com/java-composition-aggregation-association)
1212
- [Nested Classes in Java](https://www.baeldung.com/java-nested-classes)
1313
- [A Guide to Inner Interfaces in Java](https://www.baeldung.com/java-inner-interfaces)
1414
- [Java Classes and Objects](https://www.baeldung.com/java-classes-objects)
1515
- [Java Interfaces](https://www.baeldung.com/java-interfaces)
1616
- [Static and Dynamic Binding in Java](https://www.baeldung.com/java-static-dynamic-binding)
17-
- [[<-- Prev]](/core-java-modules/core-java-lang-oop-2)
17+
- [Methods in Java](https://www.baeldung.com/java-methods)
18+
- [[<-- Prev]](/core-java-modules/core-java-lang-oop-2)

0 commit comments

Comments
 (0)