Skip to content

Commit 27422d0

Browse files
authored
Merge pull request eugenp#6284 from collaboratewithakash/master
Back-link added
2 parents 1f24426 + a64b805 commit 27422d0

File tree

29 files changed

+48
-8
lines changed

29 files changed

+48
-8
lines changed

algorithms-miscellaneous-1/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,5 @@
1515
- [Find Substrings That Are Palindromes in Java](https://www.baeldung.com/java-palindrome-substrings)
1616
- [Find the Longest Substring without Repeating Characters](https://www.baeldung.com/java-longest-substring-without-repeated-characters)
1717
- [Java Two Pointer Technique](https://www.baeldung.com/java-two-pointer-technique)
18+
- [Permutations of an Array in Java](https://www.baeldung.com/java-array-permutations)
19+
- [Implementing Simple State Machines with Java Enums](https://www.baeldung.com/java-enum-simple-state-machine)

apache-spark/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
### Relevant articles
22

33
- [Introduction to Apache Spark](http://www.baeldung.com/apache-spark)
4+
- [Building a Data Pipeline with Kafka, Spark Streaming and Cassandra](https://www.baeldung.com/kafka-spark-data-pipeline)

core-java-11/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@
33
- [Java 11 Single File Source Code](https://www.baeldung.com/java-single-file-source-code)
44
- [Java 11 Local Variable Syntax for Lambda Parameters](https://www.baeldung.com/java-var-lambda-params)
55
- [Java 11 String API Additions](https://www.baeldung.com/java-11-string-api)
6+
- [Java 11 Nest Based Access Control](https://www.baeldung.com/java-nest-based-access-control)

core-java-9/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,4 @@
2626
- [Initialize a HashMap in Java](https://www.baeldung.com/java-initialize-hashmap)
2727
- [Java 9 Platform Logging API](https://www.baeldung.com/java-9-logging-api)
2828
- [Guide to java.lang.Process API](https://www.baeldung.com/java-process-api)
29+
- [Immutable Set in Java](https://www.baeldung.com/java-immutable-set)

core-java-arrays/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,4 @@
1414
- [Array Operations in Java](http://www.baeldung.com/java-common-array-operations)
1515
- [Intersection Between two Integer Arrays](https://www.baeldung.com/java-array-intersection)
1616
- [Sorting Arrays in Java](https://www.baeldung.com/java-sorting-arrays)
17+
- [Convert a Float to a Byte Array in Java](https://www.baeldung.com/java-convert-float-to-byte-array)

core-java-collections/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,3 +31,4 @@
3131
- [A Guide to EnumMap](https://www.baeldung.com/java-enum-map)
3232
- [A Guide to Iterator in Java](http://www.baeldung.com/java-iterator)
3333
- [Differences Between HashMap and Hashtable](https://www.baeldung.com/hashmap-hashtable-differences)
34+
- [Java ArrayList vs Vector](https://www.baeldung.com/java-arraylist-vs-vector)

core-java-io/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,3 +38,5 @@
3838
- [How to Get the File Extension of a File in Java](http://www.baeldung.com/java-file-extension)
3939
- [Getting a File’s Mime Type in Java](http://www.baeldung.com/java-file-mime-type)
4040
- [Create a Directory in Java](https://www.baeldung.com/java-create-directory)
41+
- [How to Write to a CSV File in Java](https://www.baeldung.com/java-csv)
42+
- [List Files in a Directory in Java](https://www.baeldung.com/java-list-directory-files)

core-java-lang-syntax/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,5 @@
1616
- [Quick Guide to java.lang.System](http://www.baeldung.com/java-lang-system)
1717
- [Java Switch Statement](https://www.baeldung.com/java-switch)
1818
- [The Modulo Operator in Java](https://www.baeldung.com/modulo-java)
19-
- [Ternary Operator In Java](https://www.baeldung.com/java-ternary-operator)
19+
- [Ternary Operator In Java](https://www.baeldung.com/java-ternary-operator)
20+
- [Java instanceof Operator](https://www.baeldung.com/java-instanceof)

core-java-lang/README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,10 @@
3434
- [“Sneaky Throws” in Java](http://www.baeldung.com/java-sneaky-throws)
3535
- [Retrieving a Class Name in Java](https://www.baeldung.com/java-class-name)
3636
- [Java Compound Operators](https://www.baeldung.com/java-compound-operators)
37-
- [Guide to Java Packages](https://www.baeldung.com/java-packages)
37+
- [Guide to Java Packages](https://www.baeldung.com/java-packages)
38+
- [The Java Native Keyword and Methods](https://www.baeldung.com/java-native)
39+
- [If-Else Statement in Java](https://www.baeldung.com/java-if-else)
40+
- [Control Structures in Java](https://www.baeldung.com/java-control-structures)
41+
- [Java Interfaces](https://www.baeldung.com/java-interfaces)
42+
- [Attaching Values to Java Enum](https://www.baeldung.com/java-enum-values)
43+
- [Variable Scope in Java](https://www.baeldung.com/java-variable-scope)

core-java-perf/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,5 @@
55
- [Different Ways to Capture Java Heap Dumps](https://www.baeldung.com/java-heap-dump-capture)
66
- [Understanding Memory Leaks in Java](https://www.baeldung.com/java-memory-leaks)
77
- [OutOfMemoryError: GC Overhead Limit Exceeded](http://www.baeldung.com/java-gc-overhead-limit-exceeded)
8-
- [Basic Introduction to JMX](http://www.baeldung.com/java-management-extensions)
8+
- [Basic Introduction to JMX](http://www.baeldung.com/java-management-extensions)
9+
- [Monitoring Java Applications with Flight Recorder](https://www.baeldung.com/java-flight-recorder-monitoring)

0 commit comments

Comments
 (0)