Skip to content

Commit 3c35e25

Browse files
cody756pivovarit
authored andcommitted
BAEL-9344 (eugenp#5435)
* Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.MD * Update README.md * Update README.md * Update README.md * Create README.md * Update README.md * Update README.md
1 parent fe8488a commit 3c35e25

19 files changed

Lines changed: 36 additions & 2 deletions

File tree

algorithms/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,3 +28,6 @@
2828
- [Calculate the Distance Between Two Points in Java](https://www.baeldung.com/java-distance-between-two-points)
2929
- [Find the Intersection of Two Lines in Java](https://www.baeldung.com/java-intersection-of-two-lines)
3030
- [Check If a String Contains All The Letters of The Alphabet](https://www.baeldung.com/java-string-contains-all-letters)
31+
- [Round Up to the Nearest Hundred](https://www.baeldung.com/java-round-up-nearest-hundred)
32+
- [Merge Sort in Java](https://www.baeldung.com/java-merge-sort)
33+
- [Calculate Percentage in Java](https://www.baeldung.com/java-calculate-percentage)

aws/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@
99
- [Integration Testing with a Local DynamoDB Instance](http://www.baeldung.com/dynamodb-local-integration-tests)
1010
- [Using the JetS3t Java Client With Amazon S3](http://www.baeldung.com/jets3t-amazon-s3)
1111
- [Managing Amazon SQS Queues in Java](http://www.baeldung.com/aws-queues-java)
12-
12+
- [Guide to AWS Aurora RDS with Java](https://www.baeldung.com/aws-aurora-rds-java)

core-java-9/README.md

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

core-java-collections/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,3 +52,6 @@
5252
- [Performance of contains() in a HashSet vs ArrayList](https://www.baeldung.com/java-hashset-arraylist-contains-performance)
5353
- [Get the Key for a Value from a Java Map](https://www.baeldung.com/java-map-key-from-value)
5454
- [Time Complexity of Java Collections](https://www.baeldung.com/java-collections-complexity)
55+
- [Sort a HashMap in Java](https://www.baeldung.com/java-hashmap-sort)
56+
- [Finding the Highest Value in a Java Map](https://www.baeldung.com/java-find-map-max)
57+
- [Operating on and Removing an Item from Stream](https://www.baeldung.com/java-use-remove-item-stream)

core-java-concurrency/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,3 +29,4 @@
2929
- [A Custom Spring SecurityConfigurer](http://www.baeldung.com/spring-security-custom-configurer)
3030
- [Life Cycle of a Thread in Java](http://www.baeldung.com/java-thread-lifecycle)
3131
- [Runnable vs. Callable in Java](http://www.baeldung.com/java-runnable-callable)
32+
- [Brief Introduction to Java Thread.yield()](https://www.baeldung.com/java-thread-yield)

core-java/README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -150,3 +150,9 @@
150150
- [Throw Exception in Optional in Java 8](https://www.baeldung.com/java-optional-throw-exception)
151151
- [Add a Character to a String at a Given Position](https://www.baeldung.com/java-add-character-to-string)
152152
- [Synthetic Constructs in Java](https://www.baeldung.com/java-synthetic)
153+
- [Convert Double to String, Removing Decimal Places](https://www.baeldung.com/java-double-to-string)
154+
- [Different Ways to Capture Java Heap Dumps](https://www.baeldung.com/java-heap-dump-capture)
155+
- [How to Separate Double into Integer and Decimal Parts](https://www.baeldung.com/java-separate-double-into-integer-decimal-parts)
156+
- [ZoneOffset in Java](https://www.baeldung.com/java-zone-offset)
157+
- [Hashing a Password in Java](https://www.baeldung.com/java-password-hashing)
158+
- [Java Switch Statement](https://www.baeldung.com/java-switch)

core-kotlin/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,3 +37,5 @@
3737
- [Kotlin with Ktor](https://www.baeldung.com/kotlin-ktor)
3838
- [Fuel HTTP Library with Kotlin](https://www.baeldung.com/kotlin-fuel)
3939
- [Introduction to Kovenant Library for Kotlin](https://www.baeldung.com/kotlin-kovenant)
40+
- [Converting Kotlin Data Class from JSON using GSON](https://www.baeldung.com/kotlin-json-convert-data-class)
41+
- [Concatenate Strings in Kotlin](https://www.baeldung.com/kotlin-concatenate-strings)

hibernate5/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,4 @@
1616
- [Hibernate Entity Lifecycle](https://www.baeldung.com/hibernate-entity-lifecycle)
1717
- [Mapping A Hibernate Query to a Custom Class](https://www.baeldung.com/hibernate-query-to-custom-class)
1818
- [@JoinColumn Annotation Explained](https://www.baeldung.com/jpa-join-column)
19+
- [Hibernate 5 Naming Strategy Configuration](https://www.baeldung.com/hibernate-naming-strategy)

java-streams/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,4 @@
1313
- [How to Iterate Over a Stream With Indices](http://www.baeldung.com/java-stream-indices)
1414
- [Primitive Type Streams in Java 8](http://www.baeldung.com/java-8-primitive-streams)
1515
- [Stream Ordering in Java](https://www.baeldung.com/java-stream-ordering)
16+
- [Introduction to Protonpack](https://www.baeldung.com/java-protonpack)

java-strings/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,3 +31,5 @@
3131
- [Converting a Stack Trace to a String in Java](https://www.baeldung.com/java-stacktrace-to-string)
3232
- [Sorting a String Alphabetically in Java](https://www.baeldung.com/java-sort-string-alphabetically)
3333
- [Remove Emojis from a Java String](https://www.baeldung.com/java-string-remove-emojis)
34+
- [String Not Empty Test Assertions in Java](https://www.baeldung.com/java-assert-string-not-empty)
35+
- [String Performance Hints](https://www.baeldung.com/java-string-performance)

0 commit comments

Comments
 (0)