Skip to content

Commit d78915c

Browse files
collaboratewithakashpivovarit
authored andcommitted
Back-links added - Akash (eugenp#5846)
* Back-link formatting issue resolved * Back-link added * Back-link added * Back-link added * Back-link added * Back-link added * Back-link added * Back-link added * Back-link added * Back-link added * Back-link added * Back-link added * Back-link added * Back-link added * Back-link added * Back-link added (please fix the formatting too) * Back-link added * Back-link added * Back-link added * back-link added * Back-link added * Back-link added * Back-link added * Back-link added * Back-link added * Back-link added * Back-link added
1 parent 8b8fda7 commit d78915c

File tree

20 files changed

+28
-4
lines changed

20 files changed

+28
-4
lines changed

core-java-arrays/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
- [Arrays in Java: A Reference Guide](https://www.baeldung.com/java-arrays-guide)
1313
- [How to Invert an Array in Java](http://www.baeldung.com/java-invert-array)
1414
- [Array Operations in Java](http://www.baeldung.com/java-common-array-operations)
15-
15+
- [Intersection Between two Integer Arrays](https://www.baeldung.com/java-array-intersection)

core-java-collections/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,3 +51,4 @@
5151
- [Java List Initialization in One Line](https://www.baeldung.com/java-init-list-one-line)
5252
- [ClassCastException: Arrays$ArrayList cannot be cast to ArrayList](https://www.baeldung.com/java-classcastexception-arrays-arraylist)
5353
- [A Guide to EnumMap](https://www.baeldung.com/java-enum-map)
54+
- [Ways to Iterate Over a List in Java](https://www.baeldung.com/java-iterate-list)

core-java-concurrency/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,3 +31,4 @@
3131
- [Runnable vs. Callable in Java](http://www.baeldung.com/java-runnable-callable)
3232
- [Brief Introduction to Java Thread.yield()](https://www.baeldung.com/java-thread-yield)
3333
- [Print Even and Odd Numbers Using 2 Threads](https://www.baeldung.com/java-even-odd-numbers-with-2-threads)
34+
- [Java CyclicBarrier vs CountDownLatch](https://www.baeldung.com/java-cyclicbarrier-countdownlatch)

core-java-lang/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,4 +58,4 @@
5858
- [Inheritance and Composition (Is-a vs Has-a relationship) in Java](http://www.baeldung.com/java-inheritance-composition)
5959
- [A Guide to Constructors in Java](https://www.baeldung.com/java-constructors)
6060
- [Retrieving a Class Name in Java](https://www.baeldung.com/java-class-name)
61-
61+
- [Java equals() and hashCode() Contracts](https://www.baeldung.com/java-equals-hashcode-contracts)

core-java/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,3 +89,6 @@
8989
- [Java – Try with Resources](https://www.baeldung.com/java-try-with-resources)
9090
- [Abstract Classes in Java](https://www.baeldung.com/java-abstract-class)
9191
- [Guide to Character Encoding](https://www.baeldung.com/java-char-encoding)
92+
- [Calculate the Area of a Circle in Java](https://www.baeldung.com/java-calculate-circle-area)
93+
- [A Guide to the Java Math Class](https://www.baeldung.com/java-lang-math)
94+
- [Graphs in Java](https://www.baeldung.com/java-graphs)

core-kotlin/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,3 +47,4 @@
4747
- [Guide to Sorting in Kotlin](https://www.baeldung.com/kotlin-sort)
4848
- [Dependency Injection for Kotlin with Injekt](https://www.baeldung.com/kotlin-dependency-injection-with-injekt)
4949
- [Implementing a Binary Tree in Kotlin](https://www.baeldung.com/kotlin-binary-tree)
50+
- [Generate a Random Alphanumeric String in Kotlin](https://www.baeldung.com/kotlin-random-alphanumeric-string)

java-dates/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,5 @@
2424
- [Add Hours To a Date In Java](http://www.baeldung.com/java-add-hours-date)
2525
- [Guide to DateTimeFormatter](https://www.baeldung.com/java-datetimeformatter)
2626
- [Format ZonedDateTime to String](https://www.baeldung.com/java-format-zoned-datetime-string)
27-
- [Convert Between java.time.Instant and java.sql.Timestamp](Convert Between java.time.Instant and java.sql.Timestamp)
27+
- [Convert Between java.time.Instant and java.sql.Timestamp](https://www.baeldung.com/java-time-instant-to-java-sql-timestamp)
28+
- [Convert between String and Timestamp](https://www.baeldung.com/java-string-to-timestamp)

java-strings/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,3 +39,7 @@
3939
- [Generate a Secure Random Password in Java](https://www.baeldung.com/java-generate-secure-password)
4040
- [Removing Repeated Characters from a String](https://www.baeldung.com/java-remove-repeated-char)
4141
- [Join Array of Primitives with Separator in Java](https://www.baeldung.com/java-join-primitive-array)
42+
- [Convert String to Byte Array and Reverse in Java](https://www.baeldung.com/java-string-to-byte-array)
43+
- [Pad a String with Zeros or Spaces in Java](https://www.baeldung.com/java-pad-string)
44+
- [Adding a Newline Character to a String in Java](https://www.baeldung.com/java-string-newline)
45+
- [Remove or Replace part of a String in Java](https://www.baeldung.com/java-remove-replace-string-part)

kotlin-libraries/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,4 @@
88
- [Kotlin with Ktor](http://www.baeldung.com/kotlin-ktor)
99
- [Guide to the Kotlin Exposed Framework](https://www.baeldung.com/kotlin-exposed-persistence)
1010
- [Working with Dates in Kotlin](https://www.baeldung.com/kotlin-dates)
11+
- [Introduction to Arrow in Kotlin](https://www.baeldung.com/kotlin-arrow)

libraries-data/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,4 @@
1414
- [Building a Data Pipeline with Flink and Kafka](https://www.baeldung.com/kafka-flink-data-pipeline)
1515
- [Intro to Apache Storm](https://www.baeldung.com/apache-storm)
1616
- [Guide to Ebean ORM](https://www.baeldung.com/ebean-orm)
17+
- [Introduction to Kafka Connectors](https://www.baeldung.com/kafka-connectors-guide)

0 commit comments

Comments
 (0)