Commit Graph

3507 Commits

Author SHA1 Message Date
parthiv39731 5bf002e0fd BAEL-6865, taking care of review comments as part of PR-14653 2023-08-25 10:35:47 -07:00
parthiv39731 63f511b9c6 Update core-java-modules/core-java-streams-5/src/test/java/com/baeldung/aggregateEx/AggregateExceptionHandlerUnitTest.java
removing extra parentheses

Co-authored-by: Liam Williams <liam.williams@zoho.com>
2023-08-25 09:50:53 -07:00
Loredana Crusoveanu 89fa14a69b Merge pull request #14651 from edizor/master
Update README
2023-08-25 10:18:29 +03:00
Kai Yuan c37ed2843a [regex-squre-brackets] Extract Text Between Square Brackets (#14635) 2023-08-24 21:38:07 -05:00
parthiv39731 5c67e16385 Merge branch 'eugenp:master' into PR-6865 2023-08-25 00:35:54 +05:30
parthiv39731 9b1d47ff4e BAEL-6865, Aggregate Runtime Exceptions in Java Streams
Changed method names
2023-08-24 12:04:54 -07:00
edizor d5302c21b5 Update README.md
[skip ci]
2023-08-24 21:49:35 +08:00
edizor 7f3b001888 Update README.md
[skip ci]
2023-08-24 21:41:43 +08:00
edizor f9762f26c7 Update README.md
[skip ci]
2023-08-24 21:39:18 +08:00
edizor d5b7790812 Update README.md
[skip ci]
2023-08-24 21:36:47 +08:00
edizor 1dad5a38e4 Update README.md
[skip ci]
2023-08-24 21:33:45 +08:00
Vini a77075cc32 Merge pull request #14555 from rajat-garg/feature/cartesian-product
[BAEL-6708] Add Cartesian Product
2023-08-24 08:57:40 +02:00
rajatgarg 8351c9fca3 [BAEL-6708] Address review comments 2023-08-24 08:58:53 +05:30
Gaetano Piazzolla 1f98b51b8f JAVA-24259 | small refactor for readability (#14602) 2023-08-23 21:07:47 +05:30
timis1 fad32db315 JAVA-24052 Upgrade java-stream-filter-lambda article (#14610) 2023-08-23 15:08:28 +03:00
timis1 65852417da JAVA-24055 Upgrade reading-file-in-java article (#14591) 2023-08-23 15:07:11 +03:00
panos-kakos 116d093db9 [JAVA-23095] (#14613)
* [JAVA-23095] Upgraded guava library to latest version

* [JAVA-23095] Clean up
2023-08-23 15:40:27 +05:30
ACHRAF TAITAI 420305fe3b BAEL-6560: How to solve SocketException Connection reset (#14636) 2023-08-22 10:10:05 +02:00
Bhaskar Ghosh Dastidar de6d040193 [BAEL-6859] inner sub classes (#14631)
* [BAEL-6859] inner and sub classes

* [BAEL-6859] unit test cases added

* [BAEL-6859] usage of inner class in outer class

* [BAEL-6859] usage of inner class in outer class

---------

Co-authored-by: Bhaskar <bhaskar.dastidar@freshworks.com>
2023-08-21 17:20:48 +02:00
Kasra Madadipouya 023d73ef61 Merge pull request #14624 from timis1/JAVA-24160
JAVA-24160 Review log statements for projects - Week 33 - 2023
2023-08-20 23:33:04 +02:00
Loredana Crusoveanu 0a10e4d8e0 Merge pull request #14616 from edizor/master
Update README
2023-08-20 20:17:59 +03:00
vunamtien 111379185d BAEL-6839-get-random-from-set (#14606)
* BAEL-6839-get-random-from-set

* edge cases
2023-08-20 08:34:15 +02:00
timis1 814604f2f4 JAVA-24160 Review log statements for projects - Week 33 - 2023 2023-08-20 09:31:39 +03:00
Shahul Basha 94ab13cacc Override Equals method improvement (#14446) 2023-08-20 08:25:42 +02:00
gaepi d5ebd8105d JAVA-23897 | re enabling test 2023-08-19 13:04:17 +02:00
Kai Yuan 98d959f33a Get the first n elements of a List into an Array (#14599)
* Get the first n elements of a List into an Array

* [first-n-to-array] rename N -> n
2023-08-18 20:30:24 -05:00
edizor 05b3ebd54e Update README.md
[skip ci]
2023-08-19 08:54:26 +08:00
edizor cbd608ed1f Update README.md
[skip ci]
2023-08-19 08:48:05 +08:00
edizor 8bd823054e Create README.md
[skip ci]
2023-08-19 08:24:42 +08:00
edizor c674fe4931 Update README.md
[skip ci]
2023-08-19 08:14:31 +08:00
edizor fc9afd1fa0 Update README.md
[skip ci]
2023-08-19 08:07:12 +08:00
edizor abfef847bd Update README.md
[skip ci]
2023-08-19 07:56:21 +08:00
edizor f8b5cccb6c Update README.md
[skip ci]
2023-08-19 07:43:12 +08:00
edizor 415eb1fae3 Update README.md
[skip ci]
2023-08-19 07:32:45 +08:00
Kai Yuan 16080930fa [map-KV-to-list] Get Values and Keys as ArralyLists From a HashMap (#14615) 2023-08-18 21:48:48 +02:00
Rufina Uche 8502670140 Calculating the Sum of Two Arrays Element by Element in Java (#14579)
* Create SumArraysUsingForLoop.java

* Update SumArraysUsingForLoop.java

* add sum arrays using for each loop and streams

* Create SumArraysUsingForLoopTest.java

* Add files via upload

* Update SumArraysUsingStreams.java

* Update and rename SumArraysUsingForEachTest.java to SumArraysUsingForEachUnitTest.java

* Rename SumArraysUsingForLoopTest.java to SumArraysUsingForLoopUnitTest.java

* Update and rename SumArraysUsingStreamsTest.java to SumArraysUsingStreamsUnitTest.java

* Update SumArraysUsingForEachUnitTest.java

* Update SumArraysUsingForLoopUnitTest.java

* Update SumArraysUsingForEachUnitTest.java

* Update SumArraysUsingStreamsUnitTest.java
2023-08-18 21:43:41 +02:00
Bhaskar Ghosh Dastidar b25e324790 [BAEL-6859] Inner Classes vs. Subclasses in Java (#14608)
* [BAEL-6859] inner and sub classes

* [BAEL-6859] unit test cases added

---------

Co-authored-by: Bhaskar <bhaskar.dastidar@freshworks.com>
2023-08-18 21:36:51 +02:00
timis1 04caad5f80 JAVA-24057 Upgrade java-aes-encryption-decription article (#14593) 2023-08-18 12:14:17 +03:00
Kai Yuan 1d0afe4f07 Convert an ArrayList of String to a String Array in Java (#14583)
* Convert an ArrayList of String to a String Array in Java

* fixing typo

* module moving
2023-08-15 19:40:47 -05:00
Graham Cox 379992c84e BAEL-6813: Moved Magic Square code to core-java-lang-math-3 (#14587)
* BAEL-6813: Moved Magic Square code to core-java-lang-math-3

* Fix code to work below Java 11

* Fix unrelated broken test
2023-08-15 12:56:05 +02:00
Loredana Crusoveanu 4a11a82b66 Merge pull request #14596 from eugenp/upgrade-module
upgrade core-java-collections-conversions-2 module to jdk 11
2023-08-15 13:19:37 +03:00
timis1 1f5590b7b5 JAVA-24054 Upgrade java-enum-values article (#14590) 2023-08-15 11:40:13 +03:00
Loredana Crusoveanu ef865442ea upgrade core-java-collections-conversions-2 module to jdk 11 2023-08-15 10:40:32 +03:00
Michael Olayemi cb111b0d8b Conversion From 12 Hours Time to 24 Hours Time in Java (#14580) 2023-08-14 22:33:59 +05:30
MohamedHelmyKassab 5874d1fd15 This PR is for BAEL-6788 (#14563)
This PR aims to add java classes for the HashMap multi values operations with same key
2023-08-12 09:00:00 +02:00
Kasra Madadipouya bb8bb76538 Merge pull request #14571 from GaetanoPiazzolla/JAVA-24048-fix-test
JAVA-24048 | Changed to Manual test
2023-08-11 15:35:08 +02:00
Loredana Crusoveanu c274c658ad Merge pull request #14573 from collaboratewithakash/master
backlink updated
2023-08-11 15:27:55 +03:00
Graham Cox 005d84d780 BAEL-6813: Creating a Magic Square in Java (#14572) 2023-08-11 12:57:48 +02:00
GaetanoPiazzolla 8e1bd93d12 JAVA-24048 | Changed to Manual test 2023-08-11 10:41:51 +02:00
collaboratewithakash 2bfc8a9a1e backlink updated 2023-08-11 12:38:40 +05:30
collaboratewithakash 75beecef09 backlink updated 2023-08-11 12:36:43 +05:30
Neetika Khandelwal 183e213f0e Shallow and Deep Copy example 2023-08-10 23:11:25 +05:30
Robaed b04d773ef2 [BAEL-6593] - Initial push after adding epoch time to localdate and localdatetime conversions (#14556)
Co-authored-by: bobby00 <edwarobert6@gmail.com>
2023-08-10 09:05:12 +02:00
Kasra Madadipouya aa2686bc4a Merge pull request #14550 from ehsansasanian/java-20349-move-pre-jpms-module
java-20349: move pre-jpms module to core-java-9 module
2023-08-09 23:59:51 +02:00
rajatgarg de16d8c39c [BAEL-6708] Address review comments 2023-08-09 22:44:14 +05:30
Loredana Crusoveanu f439ab873d Merge pull request #14558 from edizor/master
Update README
2023-08-09 18:07:13 +03:00
Vladyslav Chernov 7ab8374bd9 BAEL-5852: What does the Holder<T> do in Java? (#14477)
Co-authored-by: Vladyslav Chernov <vlad.chrv@gmail.com>
2023-08-09 20:12:00 +05:30
edizor f68319aef0 Update README.md
[skip ci]
2023-08-09 20:50:47 +08:00
edizor 0276583d48 Update README.md
[skip ci]
2023-08-09 20:45:45 +08:00
edizor e0a5015914 Update README.md
[skip ci]
2023-08-09 20:25:58 +08:00
edizor db956411f3 Update README.md
[skip ci]
2023-08-09 20:22:23 +08:00
edizor 97416e6ea8 Update README.md
[skip ci]
2023-08-09 20:17:48 +08:00
edizor 03c206ac2d Update README.md
[skip ci]
2023-08-09 20:14:42 +08:00
Kai Yuan 4945be2fd6 What's the Difference Between Iterator and Listiterator? (#14547) 2023-08-08 19:05:39 -05:00
rajatgarg 2337e29d0b [BAEL-6708] Add Cartesian Product 2023-08-08 20:07:33 +05:30
davidmartinezbarua 2e44c635e9 Merge pull request #14520 from sam-gardner/BAEL-6837-get-first-item-from-set
BAEL-6837 Add example code for getting the first item from a Set
2023-08-08 10:58:59 -03:00
Ehsan Sasanianno 743d8e8ad4 java-20349: move pre-jpms module to core-java-9 module 2023-08-07 22:50:40 +02:00
Kasra Madadipouya 0061f631a8 Merge pull request #14534 from Bipinkumar27/JAVA-22625
JAVA-22625:Changes made for testing the failing module
2023-08-07 20:04:03 +02:00
Alex Tighe 6a6ac00db2 BAEL-6458: Guide to the yield Keyword in Java (#14440)
* BAEL-6229: committing new example for loading multiple yaml configuration files

* BAEL-6229: updating README.md

* BAEL-6229: adding example one code, commented out

* Revert "BAEL-6229: updating README.md"

This reverts commit 51cd2dcf97f797aa6a723888fd246ef0142242a3.

* BAEL-6229: adding comments around commented out code for first example.

* BAEL-6458: creating new module for conditionals and adding examples for yield

* BAEL-6458: creating new module for conditionals and adding examples for yield

* BAEL-6458: rename methods

* BAEL-6458: clean up pom

* BAEL-6458: convert checks to tests

* BAEL-6458: convert checks to tests

* BAEL-6458: convert checks to tests

* BAEL-6458: move examples to just YieldTest and removed YieldExamples class. Also added assigning the value of the switch expression to a variable instead of returning from method. Also added a non-default exhaustive test.

* BAEL-6458: Test clean up based on initial PR feedback.
2023-08-07 18:38:05 +01:00
Kai Yuan 966d488013 Remove Duplicate Values From HashMap in Java (#14519)
* Remove Duplicate Values From HashMap in Java

* fix the typo in the package name
2023-08-06 12:49:57 -05:00
Gaetano Piazzolla f90e26db1f JAVA-23319 | Moving DualPrintStream (#14524)
* JAVA-23319 | moving DualPrintStream

* JAVA-23319 | adding checkerror
2023-08-06 10:40:03 +05:30
Tapan Avasthi 8aecf2fd3f BAEL-6831: Convert an int[] Array to HashSet in Java (#14525)
Co-authored-by: Tapan Avasthi <tavasthi@Tapans-MacBook-Air.local>
2023-08-05 08:44:19 -05:00
Eugene Kovko 760825405a BAEL-6651: Embeddable Records in Hibernate 6 (#14516)
* BAEL-6651: Bumped Spring Boot version

* BAEL-6651: Replaced flaky test

* BAEL-6651: Embeddable example with tests
2023-08-04 19:39:09 +02:00
Bipinkumar27 2ed0b60446 JAVA-22625:Changes made for testing the failing module 2023-08-04 20:06:01 +05:30
Vini 2879e21aeb Merge pull request #14526 from vunamtien/BAEL-6541-convert-relative-path-2
BAEL-6541-convert-relative-path-2
2023-08-04 10:53:52 +02:00
Loredana Crusoveanu 41d11e7d46 Update CertificatesUnitTest.java 2023-08-04 10:42:58 +03:00
tienvn 1e05bb6e98 BAEL-6541-convert-relative-path 2023-08-03 17:59:49 +07:00
Loredana Crusoveanu 7091862cb2 Merge pull request #14522 from edizor/master
Update README
2023-08-02 21:23:01 +03:00
MohamedHelmyKassab 43c4176e9c This commit is for the article BAEL-6788 (#14513)
This commit aims to add a test class (MultiValueHashMapTest) to test the HashMap that allows multiple values to be associated with the same key
2023-08-02 19:47:45 +02:00
Mo Helmy f7998fa4fa This commit is for the article BAEL-6792 (#14512)
This commit aims to add a test class namely (StringToMapUnitTest) that tests the conversion of string and string array into map.
2023-08-02 19:42:36 +02:00
edizor b2ad1cb23e Update README.md
[skip ci]
2023-08-02 21:51:38 +08:00
edizor eb1b06160f Update README.md
[skip ci]
2023-08-02 21:30:25 +08:00
edizor 8004cac172 Update README.md
[skip ci]
2023-08-02 21:13:10 +08:00
edizor fa7766b053 Update README.md
[skip ci]
2023-08-02 20:51:10 +08:00
edizor af7755a76e Update README.md
[skip ci]
2023-08-02 20:47:25 +08:00
edizor 96cd5a6ce1 Update README.md
[skip ci]
2023-08-02 20:41:09 +08:00
Sam Gardner b5fef8d2b5 BAEL-6837 Add example code for getting the first item from a Set 2023-08-02 12:05:17 +01:00
timis1 50147f3c8e JAVA-23392 Adding some more example for differences between Scanner n… (#14491)
* JAVA-23392 Adding some more example for differences between Scanner next() vs nextLine()

* Update NextVsNextLineUnitTest.java

---------

Co-authored-by: timis1 <noreplay@yahoo.com>
Co-authored-by: Dhawal Kapil <dhawalkapil@gmail.com>
2023-08-01 20:44:56 +05:30
parthiv39731 8f344ca0f7 BAEL-6841 (#14502)
Improvement article - "Check if a String Has All Unique Characters in Java"
2023-08-01 11:52:01 +02:00
sachin bb967e0836 BAEL-4895 brokenpipe error (#14346)
Co-authored-by: Sachin kumar <sachin.n.kumar@oracle.com>
2023-07-31 12:15:49 -05:00
davidmartinezbarua b9180b0eb7 Merge pull request #14481 from sam-gardner/BAEL-6611-completablefuturevsfuturevsrxjava
BAEL-6611 add example code for completablefuture vs future vs rxjava …
2023-07-31 12:48:33 -03:00
Kai Yuan eb5e9fe2b5 How to Modify a Key in a HashMap? (#14496) 2023-07-30 23:02:18 -05:00
Michael Olayemi 933571b813 Splitting a string into two halfs (#14500) 2023-07-31 07:01:30 +05:30
Michael Olayemi 92b922b6c1 How to Get the Start and the End Date of a Year using Java (#14493)
* How to Get the Start and the End Date of a Year using Java

* How to Get the Start and the End Date of a Year using Java

* How to Get the Start and the End Date of a Year using Java
2023-07-30 10:12:23 +05:30
Vini 4b08a40eae Merge pull request #14232 from vunamtien/BAEL-6541-convert-relative-path
BAEL-6541-convert-relative-path
2023-07-27 09:29:08 +02:00
Loredana Crusoveanu 33a6f4610b Merge pull request #14485 from edizor/master
Update README
2023-07-26 12:59:40 +03:00
ACHRAF TAITAI 3d76035de8 BAEL-6713: Convert List<Long> Object to long[] Array in Java (#14479) 2023-07-26 11:17:26 +02:00
edizor fca0f32ab7 Update README.md
[skip ci]
2023-07-26 16:14:40 +08:00
edizor 812d7fab52 Update README.md
[skip ci]
2023-07-26 16:07:48 +08:00
edizor 891e76f630 Update README.md
[skip ci]
2023-07-26 16:00:14 +08:00
edizor 51982ca793 Update README.md
[skip ci]
2023-07-26 15:49:02 +08:00
edizor 278af26fdc Update README.md
[skip ci]
2023-07-26 15:45:36 +08:00
edizor d87ee38baa Update README.md
[skip ci]
2023-07-26 15:40:25 +08:00
Michael Olayemi ddce1d63db Law of Demeter in Java (#14465)
* Law of Demeter in Java

* Law of Demeter in Java

* Law of Demeter in Java
2023-07-26 10:55:09 +05:30
Sam Gardner 686f39fc38 BAEL-6611 add example code for completablefuture vs future vs rxjava comparison 2023-07-25 14:05:05 +01:00
panos-kakos 0a3998e407 [JAVA-23091] Upgraded esapi version and removed it form main pom.xml (#14384)
Co-authored-by: Dhawal Kapil <dhawalkapil@gmail.com>
2023-07-25 12:59:21 +05:30
Bipin kumar 2229e249a5 JAVA-22625: Changes made for formatting the pom.xml (#14327)
* JAVA-22625: Changes made for formatting the pom.xml

* JAVA-22625: Changes made for formatting the pom.xml

* JAVA-22625: commenting module

* JAVA-22625: commenting module
2023-07-25 12:04:39 +05:30
Vali Tuguran 526e9845a8 BAEL-6225 Refactor code and move package. (#14132)
* BAEL-6225 Refactor code and move package.

* BAEL-6225 Move code to core-java-lang-oop-patterns.

* BAEL-6225 Refactor test name.

* BAEL-6225 Refactor test name.

* BAEL-6225 Update with singleton instances.
2023-07-24 08:47:07 +01:00
parthiv39731 4f24eb635e BAEL-6710 (#14454)
Changed method names
2023-07-23 19:50:50 +02:00
Manfred a1baca99fb BAEL-6725 - Performance Comparison Between Different Java String Concatenation Methods (#14458) 2023-07-23 10:04:32 +02:00
davidmartinezbarua 8db7da5c11 Merge pull request #14404 from sam-gardner/BAEL-6721-example-code-for-notification-of-a-complete-task
BAEL-6721 Add example code for notification of a complete task
2023-07-22 10:26:28 -03:00
davidmartinezbarua 9b90e43d85 Merge pull request #14415 from etrandafir93/features/BAEL-6578-CompletableFuture_allOf_vs_join
BAEL-6578: CompletableFuture allOf.join() vs join()
2023-07-22 10:19:55 -03:00
Gaetano Piazzolla f2d8753391 JAVA-23317 | Added dummy TrustManager (#14444)
* JAVA-23317 | Added dummy TrustManager

* JAVA-23317 | Added comment

* JAVA-23317 | renamed dummy to mock

* JAVA-23317 | renamed unit test
2023-07-22 18:49:21 +05:30
Michael Olayemi 10613742da What is the maximum depth of the java call stack? (#14428)
* What is the maximum depth of the java call stack?

* What is the maximum depth of the java call stack?
2023-07-21 07:12:48 +05:30
Loredana Crusoveanu c55d386498 Merge branch 'master' into master 2023-07-20 16:30:42 +03:00
collaboratewithakash 7dd971d743 backlink removed 2023-07-20 16:42:50 +05:30
edizor ec844f474d Update README.md
[skip ci]
2023-07-19 19:36:16 +08:00
edizor d097805ea3 Update README.md
[skip ci]
2023-07-19 19:35:36 +08:00
edizor 2188703fac Update README.md
[skip ci]
2023-07-19 19:11:45 +08:00
edizor 6fa2244acb Update README.md
[skip ci]
2023-07-19 16:22:36 +08:00
edizor e04ef61899 Update README.md
[skip ci]
2023-07-19 16:17:52 +08:00
Loredana Crusoveanu 0c9a09d705 Merge pull request #14383 from timis1/JAVA-23082
JAVA-23082 Review log statements for projects - Week 16 - 2023 (moved…
2023-07-18 19:25:35 +03:00
emanueltrandafir1993 aa424d05cb BAEL-6578: removed comments 2023-07-17 19:39:13 +02:00
Sam Gardner 0a8d642f0d BAEL-6721 move code to concurrency basic folder 2023-07-17 15:57:24 +01:00
emanuel.trandafir 6fbb898059 BAEL-6578: CompletableFuture allOf.join() vs join() 2023-07-15 19:53:51 +02:00
Bipin kumar ea5c9114fa JAVA-23053: Changes made for correcting the article tagging with right module (#14411) 2023-07-15 17:28:33 +05:30
Dhawal Kapil 2eb978e01b Delete core-java-modules/core-java-io-apis-3 directory (#14408) 2023-07-14 23:31:14 +05:30
Dhawal Kapil 776ae7b875 Update README.md (#14409) 2023-07-14 23:25:39 +05:30
timis1 f2ab4c2aa8 JAVA-22516 Split or move core-java-io-apis-2 module (moved-1) (#14361)
* JAVA-22516 Split or move core-java-io-apis-2 module (moved-1)

* JAVA-22516 Adding back the file after fixing the conflicts

---------

Co-authored-by: timis1 <noreplay@yahoo.com>
2023-07-14 23:00:39 +05:30
Loredana Crusoveanu 346418a266 Merge pull request #14401 from edizor/master
Update README
2023-07-14 17:24:32 +03:00
parthiv39731 c93173406e BAEL-6710 (#14403)
Check If a String Has All Unique Characters in Java
2023-07-13 21:49:18 +02:00
Tetiana 8be07c6b36 BAEL-6717 Convert One Enum to Another Enum in Java (#14400)
- added new module core-java-lang-6
- added data model and test for enums
2023-07-13 21:29:37 +02:00
Sam Gardner 712e8b89e2 BAEL-6721 Add example code for notification of a complete task 2023-07-13 19:07:35 +01:00
edizor bcef2f9001 Update README.md
[skip ci]
2023-07-13 21:46:09 +08:00
edizor cd909bf69b Update README.md
[skip ci]
2023-07-13 21:44:30 +08:00
edizor dc2912fe4c Update README.md
[skip ci]
2023-07-13 21:27:25 +08:00
edizor e668c85464 Update README.md
[skip ci]
2023-07-13 14:25:31 +08:00
edizor 5b1bf5fb47 Update README.md
[skip ci]
2023-07-13 14:14:56 +08:00
edizor 0f3acf5ba0 Update README.md
[skip ci]
2023-07-13 14:06:49 +08:00
edizor 6ebf4aee2a Update README.md
[skip ci]
2023-07-13 14:01:58 +08:00
Michael Olayemi 8333346c43 Does Java read integers in little endian or big endian? (#14381)
* Does Java read integers in little endian or big endian?

* Does Java read integers in little endian or big endian?
2023-07-13 06:35:34 +05:30
MohamedHelmyKassab ded6e1acca BAEL-6418 (#14311)
* BAEL-6418

This commit aims to add a test class for the article BAEL-6418

* Update IntegerClassIntegerTYPEIntClassUnitTest.java

* Update IntegerClassIntegerTYPEIntClassUnitTest.java

* Update IntegerClassIntegerTYPEIntClassUnitTest.java

* Update IntegerClassIntegerTYPEIntClassUnitTest.java
2023-07-11 07:52:58 +05:30
Loredana Crusoveanu ca6b549835 Merge pull request #14376 from edizor/master
Update README.md
2023-07-10 20:14:42 +03:00
tienvn 5f24d80f3d edit unit test 2023-07-10 22:42:12 +07:00
collaboratewithakash 0baeb9312c updated backlink 2023-07-10 16:47:21 +05:30
collaboratewithakash 4cef94bb76 backlink updated 2023-07-10 16:13:02 +05:30
timis1 14e5ed0897 JAVA-23082 Review log statements for projects - Week 16 - 2023 (moved-13) (conti-1) 2023-07-10 11:23:04 +03:00
Vini 0ff24b8a56 Merge pull request #14342 from azhwani/BAEL-6399
BAEL-6399: Getting Yesterday's Date in Java
2023-07-10 10:21:56 +02:00
Ulisses Lima b21100a01e Update StringFilenameValidationUtils.java
Based on email feedback. Changing regex from "A-z" to "A-Z".
2023-07-10 00:00:07 -03:00
Kai Yuan 92c575498c [long-to-bigdecimal] Convert Long to BigDecimal in Java (#14372)
* [long-to-bigdecimal] Convert Long to BigDecimal in Java

* [long-to-bigdecimal] renaming var
2023-07-08 22:30:44 -05:00
Michael Olayemi 6fa3c122e3 Generating Random Numbers in a Range with Some Exclusions in Java (#14357) 2023-07-09 08:37:06 +05:30
edizor e29cb85200 Update README.md
[skip ci]
2023-07-08 08:31:12 +08:00
Azhwani 3277c75dd4 BAEL-6399: Getting Yesterday's Date in Java 2023-07-07 22:17:50 +02:00
tienvn cd4167c462 add unit test 2023-07-08 00:39:27 +07:00
tienvn b693287519 Merge branch 'master' into BAEL-6541-convert-relative-path 2023-07-08 00:12:28 +07:00
Dhawal Kapil 6f905048c4 JAVA-22625 Removed junit4 engine (#14368) 2023-07-06 13:02:53 +05:30
Kai Yuan b64958a6bf [split-digits] Split a String Into Digits- and Non-Digits-Elements (#14349)
* [split-digits] Split a String Into Digits- and Non-Digits-Elements

* [split-digits] JMH benchmark

* [split-digits] using enum
2023-07-05 18:20:28 -05:00
davidmartinezbarua 37add6dc4d Merge pull request #14340 from etrandafir93/features/BAEL-6579-completable_future_thread_pool
BAEL-6579: completable future's thread pool
2023-07-05 14:41:11 -03:00
Shahul Basha 1556a3c384 BAEL-6633 (#14356)
* Deep copy of Arraylist

* Deep copy of Arraylist

* Deep copy of Arraylist updated as per review

* Deep copy of Arraylist updated as per review

* Deep copy of Arraylist updated as per review
2023-07-05 14:24:57 +02:00
vunamtien e3f36b304f rename file (#14365) 2023-07-05 13:23:40 +02:00
Abhinav Pandey 0b193f4544 Bael 6577 (#14260)
* BAEL-6577 - Paralellize for loops in Java

* BAEL-6577 - Paralellize for loops in Java

* BAEL-6577 - Paralellize for loops in Java - adding JMH

* BAEL-6577 - Paralellize for loops in Java - using CompletableFuture
2023-07-04 20:07:40 +05:30
Shahul Basha 1c12d45700 BAEL-6633 (#14308)
* Deep copy of Arraylist

* Deep copy of Arraylist

* Deep copy of Arraylist updated as per review
2023-07-04 14:35:53 +02:00
parthiv39731 de3fc4f21a BAEL-6626 (#14345)
* BALE-6626
Check If a String Contains Non-Alphanumeric Characters in Java

* Move patterns to class level.

---------

Co-authored-by: parthiv39731 <parthiv39731@gmail.com>
2023-07-04 14:17:45 +02:00
Loredana Crusoveanu 03385bed6a Merge pull request #14339 from edizor/master
Update README
2023-07-03 13:07:16 +03:00
vunamtien 8e336ba020 BAEL-6644-read-zip-entries (#14321)
* read zip file entries

* add unit test

* update test code
2023-07-03 12:04:44 +02:00
Kasra Madadipouya ec8f9b4006 Merge pull request #14331 from timis1/JAVA-22498
JAVA-22498 Potential issue in "Difference Between FileReader and Buff…
2023-07-02 15:20:19 +02:00
Kai Yuan dbaba09fb9 [file-is-empty] Check If a File is Empty in Java (#14319)
* [file-is-empty] Check If a File is Empty in Java

* [file-is-empty] adjust code format

* [file-is-empty] rename test methods

* [file-is-empty] Then->then in method names
2023-07-01 21:39:05 -05:00
emanueltrandafir1993 09c62a2d70 BAEL-6579: fixing tests 2023-07-01 13:33:40 +02:00
emanueltrandafir1993 dbbd2a0a12 BAEL-6579: completable future's thread pool 2023-07-01 13:24:01 +02:00
edizor 8deff81ef9 Update README.md
[skip ci]
2023-07-01 17:54:36 +08:00
edizor 004089182c Update README.md
[skip ci]
2023-07-01 17:39:19 +08:00
edizor a24bbc6187 Update README.md
[skip ci]
2023-07-01 17:31:59 +08:00
edizor 9ec60c6e80 Update README.md
[skip ci]
2023-07-01 17:20:41 +08:00
edizor f9eec5f598 Update README.md
[skip ci]
2023-07-01 17:18:27 +08:00
edizor a328fcec3b Update README.md
[skip ci]
2023-07-01 16:59:56 +08:00
edizor 3f9cfa9beb Update README.md
[skip ci]
2023-07-01 16:50:32 +08:00
Dhawal Kapil f4d0dfcbbe JAVA-22625 Replaced Junit4 package with Junit5 (#14334) 2023-06-30 17:03:46 +05:30
timis1 8e800d1a2d JAVA-21187 Cleanup un-committed or un-ignored artifacts - Week 21 - 2023 (moved-5) (#14312)
Co-authored-by: timis1 <noreplay@yahoo.com>
2023-06-30 09:33:31 +05:30
Tapan Avasthi f9ac0f459e BAEL-6627: How to start a thread using an anonymous class (#14314)
Co-authored-by: Tapan Avasthi <tavasthi@Tapans-MacBook-Air.local>
2023-06-29 20:59:37 -05:00
timis1 615bd5c714 JAVA-22498 Potential issue in "Difference Between FileReader and BufferedReader in Java" 2023-06-29 22:35:10 +03:00
Gaetano Piazzolla f372563ca2 JAVA-21602 | fixing sync code block (#14318) 2023-06-28 20:18:08 +05:30
Azhwani 8e6bdc0205 BAEL-6597: How to get the last Day of the Month in Java (#14191) 2023-06-26 14:05:24 +02:00
Michael Pratt 5abc2c6d2c Add unit tests (#14306) 2023-06-25 20:42:54 -05:00
Loredana Crusoveanu 15dc4eb1d0 Merge pull request #14299 from collaboratewithakash/master
updated backlink
2023-06-25 18:50:11 +03:00
Bipin kumar dad0e8cf5e Java-20326: Changes made for replacing strSubstitutor with stringSubstitutor (#14301) 2023-06-25 18:19:11 +05:30
Gaetano Piazzolla e30ae6e6e0 JAVA-22238 | moved articles into correct locations. (#14297) 2023-06-24 23:41:14 +05:30
Azhwani faf6b79e86 BAEL-6397: Adding One Month to Current Date in Java (#14261) 2023-06-24 10:38:42 +02:00
collaboratewithakash d071df91a8 updated backlink 2023-06-24 13:29:37 +05:30
timis1 b39cee5e7a Java 20405 Align module names, folder names and artifact id - Week 18 - 2023 (moved-7) (#14290)
* JAVA-20405 Align name for spring-boot-aws

* JAVA-20405 Align module name for spring-boot-3-url-matching

* JAVA-20405 Align module name for core-java-streams-collect

* JAVA-20405 Align module name for dummy-surefire-junit47

---------

Co-authored-by: timis1 <noreplay@yahoo.com>
2023-06-23 13:15:40 +05:30
Loredana Crusoveanu 84f60d9c86 Merge pull request #14276 from edizor/master
Update README
2023-06-22 11:42:46 +03:00
Bhaskar Ghosh Dastidar 6844a63c64 [BAEL-6090] vector api examples (#14274)
Co-authored-by: Bhaskar <bhaskar.dastidar@freshworks.com>
2023-06-21 13:50:45 -07:00
edizor 279ae5d2a4 Update README.md
[skip ci]
2023-06-21 20:22:12 +08:00
edizor e296c2fc7c Update README.md
[skip ci]
2023-06-21 18:26:24 +08:00
edizor f2b2b8546d Update README.md
[skip ci]
2023-06-21 17:36:02 +08:00
Dmytro Budym 6311a27f8c Add code examples for "Convert Java Array to Iterable" (#14144)
* Add code examples for "Convert Java Array to Iterable"

* fix formatting
2023-06-20 21:23:47 +05:30
Michael Olayemi c4334bf328 Hex Representation of a SHA-1 Digest of a String in Java (#14239)
* Hex Representation of a SHA-1 Digest of a String in Java

* Hex Representation of a SHA-1 Digest of a String in Java

* Hex Representation of a SHA-1 Digest of a String in Java
2023-06-20 21:17:00 +05:30
davidmartinezbarua 33b4f08269 Merge pull request #14243 from thibaultfaure/article/BAEL-5600
BAEL-5600 Code for the Read Date in Java using Scanner article
2023-06-19 13:07:37 -03:00
Kai Yuan b58d374862 [list<str>-to-list<int>] Convert a List of Strings to a List of Integers (#14244) 2023-06-18 10:53:42 -05:00
Bahaa El-Din Helmy e3afaf7996 Difference Between Boolean.TRUE and true in Java (#14253)
This commit is related to the article "Difference Between Boolean.TRUE and true in Java"
2023-06-16 14:34:34 -07:00
thibault.faure a88028874b BAEL-5600 Code for the Read Date in Java using Scanner article 2023-06-16 10:52:58 +02:00
edizor feb26e3bb0 Update README.md
[skip ci]
2023-06-15 22:59:15 +08:00
edizor cf0b7af0c1 Update README.md
[skip ci]
2023-06-15 22:32:42 +08:00
edizor c75bfdaf29 Update README.md
[skip ci]
2023-06-15 22:09:26 +08:00
edizor 0e52c2fbff Update README.md
[skip ci]
2023-06-15 21:57:03 +08:00
Kai Yuan 880803be21 [str-all-upper] Check if a String is All Uppercase or Lowercase in Java (#14227) 2023-06-13 22:40:37 -05:00
tienvn4 b13c7c6ec5 BAEL-6541-convert-relative-path 2023-06-13 17:02:25 +07:00
Mo Helmy e91d7301bd Convert List to JSON (#14226)
Hello there, 
The code provides a test class for a Java list to JSON conversion.
Regards,
Mohamed.
2023-06-12 13:10:24 -07:00
Michael Olayemi 680ddfef9c Performance and Memory Allocation Comparison Between List and Set (#14124)
* Performance and Memory Allocation Comparison Between List and Set in Java

* Performance and Memory Allocation Comparison Between List and Set in Java

* Performance and Memory Allocation Comparison Between List and Set in Java

* Performance and Memory Allocation Comparison Between List and Set in Java
2023-06-12 08:26:58 +05:30
Loredana Crusoveanu 5b65c7e54a Merge pull request #14216 from collaboratewithakash/master
backlink updated
2023-06-11 15:33:45 +03:00
Dhawal Kapil b3a5af07c0 JAVA-8924 Cleanup for spliterator article (#14221) 2023-06-11 13:09:16 +05:30
Bipin kumar ab884e145f JAVA-8924: changes made for adding example of trySplit() with spiterator (#14218) 2023-06-11 12:46:11 +05:30
Dhawal Kapil fec7001cbd JAVA-8924 Fixed spliterator packages and formatting (#14211) 2023-06-10 12:42:38 +05:30
Bipin kumar ecce4a4121 JAVA-8924: changes made for adding example of tryAdvance with spiterator (#14208)
* JAVA-8924: changes made for adding example of tryAdvance with spiterator

* JAVA-8924: changes made for adding example of tryAdvance with spiterator
2023-06-10 12:02:46 +05:30
Kai Yuan b4b271c0e4 [sort-dt-str] Sort Date Strings in Java (#14188) 2023-06-09 23:00:04 -05:00
davidmartinezbarua 0ba8d92f4c Merge pull request #14170 from thibaultfaure/article/BAEL-6595
BAEL-6595 code for the How Many Days Are There in a Particular Month …
2023-06-09 13:39:42 -03:00
Loredana Crusoveanu 14e0051237 Merge pull request #14206 from edizor/master
Update README.md
2023-06-09 17:29:41 +03:00
Loredana Crusoveanu 866e3e013a Merge pull request #14199 from eugenp/remove-module
remove duplicate code
2023-06-09 17:24:48 +03:00
edizor 5a3209051a Update README.md
[skip ci]
2023-06-09 22:09:21 +08:00
davidmartinezbarua 988a96ca97 Merge pull request #14055 from thibaultfaure/feature/BAEL-6438-move-article-to-new-submodule
Create new module core-java-string-operations-6
2023-06-09 09:57:25 -03:00
collaboratewithakash 77a5f9d17b backlinks removed 2023-06-09 14:58:22 +05:30
collaboratewithakash 48b212f7be backlinks removed 2023-06-09 14:49:18 +05:30
collaboratewithakash 044783e348 backlink updated 2023-06-09 14:39:30 +05:30
collaboratewithakash 17a459a2a3 backlink updated 2023-06-09 14:34:21 +05:30
thibault.faure 12de8904ab BAEL-6595 code for the How Many Days Are There in a Particular Month of a Given Year article 2023-06-09 01:03:58 +02:00
Azhwani 5bfb63b2a1 BAEL-6545: Update article https://www.baeldung.com/java-read-lines-large-file (#14168) 2023-06-08 21:43:31 +02:00
sdhiray7 9918d614e6 BAEL-5621 Combining two byte arrays (#14129)
* Initial commit for Object copy in Java

* review comments commit for Object copy in Java

* Initial commit for parseInt vs valueOf java

* Review comments commit for parseInt vs valueOf java

* Modify readme

* review comments

* build failure

* build failure retry

* build failure retry remove parseInt(java.lang.String,int,int,int)

* build failure add comment

* change examples

* review comments

* review comments 2

* review comments 3

* Initial commit for get current stacktrace

* Remove old files

* Name updates

* Jenkins error

* changes to file name

* Review comments

* Create unit test file

* Remove unnecessary files

* Update package name

* BAEL-5321 Initial commit

* BAEL-5321 Initial commit 2

* [BAEL-5321] review comments

* [BAEL-5321] constructor

* [BAEL-5321] inline

* BAEL-6396 Initial commit

* BAEL-6396 Files reorg
2023-06-08 22:55:28 +05:30
Loredana Crusoveanu 36f28871ce Merge pull request #14198 from edizor/master
Update README
2023-06-08 19:33:07 +03:00
Loredana Crusoveanu e881e00b16 remove duplicate code 2023-06-08 19:32:16 +03:00
edizor 8becf2883d Update README.md
[skip ci]
2023-06-08 23:30:21 +08:00
edizor 029216e65b Update README.md
[skip ci]
2023-06-08 23:12:41 +08:00
edizor 33ed21921a Update README.md
[skip ci]
2023-06-08 23:09:26 +08:00
edizor a428334e81 Update README.md
[skip ci]
2023-06-08 23:03:13 +08:00
Ulisses Lima 80e0f8b2e6 check instanceof Movie 2023-06-07 12:20:25 -03:00
Kai Yuan f0124dcca0 [unique-elements-list] Get Unique Values From an ArrayList In Java (#14152) 2023-06-05 21:02:36 -05:00
lucaCambi77 f265b51841 [BAEL-6486] - Returning a Value After Finishing Thread's Job in Java (#14101)
* feat: threads with return value

* pmd violation
2023-06-05 20:52:46 -05:00
Kai Yuan 9ff3b1dd9b [map-str-obj-to-str-str] converting a Map<String, Object> to a Map<String, String>. (#14175) 2023-06-05 20:43:28 -05:00
Loredana Crusoveanu 17fc896c98 Update README.md 2023-06-02 17:47:05 +03:00
Loredana Crusoveanu 2c0482c409 Merge branch 'master' into master 2023-06-02 16:23:25 +03:00
edizor 100688ace2 Update README.md
[skip ci]
2023-06-02 08:55:33 +08:00
edizor 50cf2cee23 Update README.md
[skip ci]
2023-06-02 08:46:50 +08:00
edizor 69febffe22 Update README.md
[skip ci]
2023-06-02 08:40:51 +08:00
edizor e41e0f203f Update README.md
[skip ci]
2023-06-02 08:31:53 +08:00
edizor 8ca4e21db4 Update README.md
[skip ci]
2023-06-02 08:16:39 +08:00
edizor 857442f347 Update README.md
[skip ci]
2023-06-02 08:13:40 +08:00
collaboratewithakash c433720734 backlinks removed 2023-06-01 12:23:54 +05:30
Bahaa El-Din Helmy 0938194300 Article: Converting Object To Map in Java (#14160)
This commit is related to the article entitled "Converting Object To Map in Java"
2023-05-31 11:35:56 -07:00
Bahaa El-Din Helmy 02f497bf75 Update article "Difference Between \z and \Z in a Regular Expression in Java" (#14151)
This commit for "Update article "Difference Between \z and \Z in a Regular Expression in Java""
2023-05-31 11:09:25 -07:00
collaboratewithakash cef108190d backlink updated 2023-05-31 17:33:18 +05:30
collaboratewithakash e2320e0a23 backlink updated 2023-05-31 17:24:54 +05:30
collaboratewithakash c1822f9c32 backlink updated 2023-05-31 17:23:33 +05:30
collaboratewithakash 23a62499f8 backlink updated 2023-05-31 17:20:13 +05:30
collaboratewithakash 899c36a216 backlink updated 2023-05-31 17:07:22 +05:30
collaboratewithakash 0902a64ca7 backlink updated 2023-05-31 17:01:08 +05:30
collaboratewithakash 2123276c3a backlink updated 2023-05-31 16:59:22 +05:30
collaboratewithakash 105b97ba77 backlink updated 2023-05-31 16:45:32 +05:30
collaboratewithakash 8fb1a1ba76 backlink updated 2023-05-31 16:43:10 +05:30
collaboratewithakash 0d31bf6752 backlink updated 2023-05-31 16:40:09 +05:30
collaboratewithakash 8e18b010fc backlink updated 2023-05-31 16:38:34 +05:30
collaboratewithakash 7a6bbd8816 backlink updated 2023-05-31 16:36:37 +05:30
collaboratewithakash 9b85fbe628 backlink updated 2023-05-31 16:35:19 +05:30
collaboratewithakash 25af10719f backlink updated 2023-05-31 16:33:31 +05:30
collaboratewithakash 7dd560cf85 backlink updated 2023-05-31 16:28:25 +05:30
collaboratewithakash 304916aaa0 backlink updated 2023-05-31 16:27:10 +05:30
collaboratewithakash 449e4a3c14 backlink updated 2023-05-31 16:26:13 +05:30
collaboratewithakash 9d81f5f341 backlink updated 2023-05-31 16:25:02 +05:30
collaboratewithakash a77d6a5d76 backlink updated 2023-05-31 16:23:51 +05:30
collaboratewithakash bcf40e5497 backlink updated 2023-05-31 16:07:51 +05:30
collaboratewithakash b1746c0302 backlink updated 2023-05-31 16:05:37 +05:30
collaboratewithakash e2ed41cd78 backlink updated 2023-05-31 16:02:45 +05:30
collaboratewithakash fae6ad80ff backlink updated 2023-05-31 15:57:10 +05:30
collaboratewithakash 30c571ad67 backlink updated 2023-05-31 15:53:10 +05:30
collaboratewithakash 148511608b backlink updated 2023-05-31 15:51:11 +05:30
collaboratewithakash cec01e1aed backlink updated 2023-05-31 15:49:39 +05:30
collaboratewithakash 5daa7cb722 backlink updated 2023-05-31 15:47:50 +05:30
collaboratewithakash d6c8acde5a backlink updated 2023-05-31 15:46:34 +05:30
sachin 3d15ed0020 bael-5728 added code (#14010)
* bael-5728 added code

* bael-5728 added code

* bael-5728 added code

* bael-5728 code fix

* bael-5728 code fix

---------

Co-authored-by: Sachin kumar <sachin.n.kumar@oracle.com>
2023-05-30 20:24:52 -05:00
collaboratewithakash 3d36484001 backlink updated 2023-05-30 17:47:55 +05:30
collaboratewithakash ca9a6b3236 backlink updated 2023-05-30 17:45:57 +05:30
collaboratewithakash 0dd8327c59 backlink updated 2023-05-30 17:44:35 +05:30
collaboratewithakash b507338c7d backlink updated 2023-05-30 17:33:21 +05:30
collaboratewithakash 53c1e1451e backlink updated 2023-05-30 17:31:46 +05:30
collaboratewithakash 251710a9eb backlink updated 2023-05-30 17:29:13 +05:30
collaboratewithakash 6ad2b04afb backlink updated 2023-05-30 17:26:02 +05:30
collaboratewithakash a64ad147d7 backlink updated 2023-05-30 17:24:41 +05:30
collaboratewithakash 8645733aa2 backlink updated 2023-05-30 17:11:31 +05:30
collaboratewithakash 48c08eaad3 backlink updated 2023-05-30 17:10:24 +05:30
collaboratewithakash 21f7ce6f07 backlink updated 2023-05-30 17:08:52 +05:30
collaboratewithakash 65206efc8a backlink updated 2023-05-30 17:07:11 +05:30
Kai Yuan ee4923a29d [list-with-default] Set Default Value for Elements in List (#14125)
* [list-with-default] Set Default Value for Elements in List

* [list-with-default] remove the ncopies and stream methods.

* [list-with-default]  remove irrelevant codes
2023-05-29 09:50:55 -05:00
Loredana Crusoveanu f24b58db1b Merge pull request #14134 from collaboratewithakash/master
backlinks added
2023-05-29 17:48:03 +03:00
Azhwani 0238c2b948 BAEL-6465: How to handle NoSuchElementException when reading a file through a Scanner ? (#13999) 2023-05-28 11:06:59 +02:00
collaboratewithakash 71bc8122b7 backlink updated 2023-05-27 17:16:00 +05:30
collaboratewithakash a4ef6abdff backlink updated 2023-05-27 17:12:28 +05:30
collaboratewithakash 47ae1bdc35 backlink updated 2023-05-27 17:06:19 +05:30
collaboratewithakash e3805a44cb backlink updated 2023-05-27 16:59:40 +05:30
collaboratewithakash 32b277b9f5 backlink updated 2023-05-27 16:45:37 +05:30
collaboratewithakash 9aad77c8f7 backlink updated 2023-05-27 16:17:36 +05:30
collaboratewithakash b435391943 backlink updated 2023-05-27 16:09:46 +05:30
collaboratewithakash 60c9ad3923 backlink updated 2023-05-27 16:07:03 +05:30
collaboratewithakash f5cd3dcdba backlink updated 2023-05-27 15:28:39 +05:30
collaboratewithakash deda69da7b updated backlink 2023-05-27 15:16:58 +05:30
Loredana Crusoveanu 455b68e052 Merge pull request #14123 from edizor/master
Update README
2023-05-26 10:49:54 +03:00
edizor 2b7abfca02 Update README.md
[skip ci]
2023-05-26 11:00:47 +08:00
edizor 7d85e9e8dc Update README.md
[skip ci]
2023-05-26 10:43:38 +08:00
edizor cd3684d0b4 Update README.md
[skip ci]
2023-05-26 10:35:47 +08:00
edizor c6b2b99bb2 Update README.md
[skip ci]
2023-05-26 10:21:02 +08:00
Bahaa El-Din Helmy 296be923ce Convert Hashmap to JSON object in Java (#14118)
This commit is related to the article "Convert Hashmap to JSON object in Java"
2023-05-25 17:45:29 -07:00
Kasra Madadipouya 605d45ab11 Merge pull request #13810 from press0/master
pr: add return types for assertion; test WrongVoucher vs GoodVoucher
2023-05-25 20:04:24 +02:00
edizor 7ed8ff9e9f Update README.md
[skip ci]
2023-05-26 00:46:34 +08:00
edizor 73de91bf9b Update README.md
[skip ci]
2023-05-26 00:38:16 +08:00
edizor 8975978757 Create README.md
[skip ci]
2023-05-26 00:34:00 +08:00
edizor 5ff88e9dab Update README.md
[skip ci]
2023-05-26 00:19:08 +08:00
edizor 30f0337020 Update README.md
[skip ci]
2023-05-26 00:09:07 +08:00
edizor 317b7dcd0d Update README.md
[skip ci]
2023-05-25 23:20:07 +08:00
Azhwani 752b49ba02 BAEL-6461: What's the difference between Scanner next() and nextLine() methods? (#14057) 2023-05-24 17:26:01 +02:00
Bahaa El-Din Helmy 82500be545 Array vs List Performance in Java (#14114)
This commit is related to the article entitled "Array vs List Performance in Java"
2023-05-24 07:59:59 -07:00
Bahaa El-Din Helmy 05a672410d Convert Hashmap to JSON object in Java (#14110)
This commit is for Convert Hashmap to JSON object in Java
2023-05-23 17:05:20 -07:00
Kai Yuan df15627edc [output-to-file] Write Console Output to Text File in Java (#14082)
* [output-to-file] Write Console Output to Text File in Java

* [output-to-file] rebase on the master
2023-05-23 16:56:31 -05:00
Kai Yuan 2ea83407d3 [scanner-with-spaces] how to take input as String with spaces in Java… (#14044)
* [scanner-with-spaces] how to take input as String with spaces in Java using Scanner?y

* [scanner-with-spaces] fix typo
2023-05-23 16:50:10 -05:00
thibault.faure 159a127379 Create new module core-java-string-operations-6
Move code for the Find the Longest Word in a String article
2023-05-22 19:51:40 +02:00
davidmartinezbarua 1161c21168 Merge pull request #14037 from andrewtarry/string-conversion
add value of comparison
2023-05-22 14:39:18 -03:00
Vini a54aa7c49b Merge pull request #14093 from sam-gardner/BAEL-6334-check-list-element-in-other-list
BAEL-6334 Make object properties example clearer
2023-05-22 14:36:10 +02:00
Vini 2285893a3d Merge pull request #13761 from ciphx/string_to_int_encapsulation
https://jira.baeldung.com/browse/BAEL-5859
2023-05-22 13:42:20 +02:00
Sam Gardner 58633573a3 BAEL-6334 Make object properties example clearer 2023-05-22 10:35:26 +01:00
Deboshree d99790ef18 changing branch 2023-05-22 13:26:06 +05:30
Azhwani a0931c50ce BAEL-6460: Why is Scanner skipping nextLine() after using other next functions? (#14079) 2023-05-22 09:04:42 +02:00
Deboshree 2bf46ddbcc changing unit test class name 2023-05-21 23:41:53 +05:30
ciphx acdafe5817 Merge branch 'eugenp:master' into string_to_int_encapsulation 2023-05-21 23:37:26 +05:30
Deboshree a0079d22d2 removed optional specific function 2023-05-21 23:36:38 +05:30
Andrew Tarry 21b5f5f260 Delete README.md 2023-05-21 20:13:34 +03:00
vaibhav007jain 9fe90d4663 Bael-6331: Adding changes for creating and checking empty streams (#14047)
* BAEL-6331: Create EmptyStreams.java

* BAEL-6331: Create EmptyStreamsUnitTest.java
2023-05-21 08:15:43 +05:30
Bahaa El-Din Helmy 7a8afbb58f Array vs List Performance in Java (#14078)
This commit is related to the article entitled "Array vs List Performance in Java"
2023-05-20 14:52:56 -07:00
Bahaa El-Din Helmy 7c47447776 Convert Hashmap to JSON object in Java (#14070)
* Convert Hashmap to JSON object in Java

This commit is related to the article entitled "Convert Hashmap to JSON object in Java"

* Convert Hashmap to JSON object in Java

This commit is for the article "Convert Hashmap to JSON object in Java"
2023-05-20 09:00:00 -07:00
Eugene Kovko 7317f0816d BAEL-4615: Create and Detect Memory Leak in Java (#14060) 2023-05-19 15:00:16 -07:00
Eugene Kovko 2091146702 BAEL-5947: Moving a project to a different package (#14054)
* Revert "feat: BAEL-5947 External Debugging with JMXTerm (#13847)"

This reverts commit ae04ab2510.

* BAEL-5947: Moving a project to a different package
2023-05-19 12:29:10 -07:00
davidmartinezbarua fcd357036f Merge pull request #14007 from AndiCover/master
BAEL-6428 Make a Method Execute Only Once in Java
2023-05-19 10:02:30 -03:00
AndiCover d065736bf4 BAEL-6428 Make a Method Execute Only Once in Java 2023-05-18 19:20:49 +02:00
Bahaa El-Din Helmy c9aef79909 Title: Array vs List Performance in Java (#14034)
This commit related to the article entitled "Array vs List Performance in Java".
2023-05-18 08:19:14 -07:00
Deboshree c4431dadf5 change return type to optional 2023-05-18 19:27:02 +05:30
Sam Gardner 8430235bb1 Merge branch 'master' into BAEL-6334-check-list-element-in-other-list 2023-05-18 10:31:57 +01:00
Sam Gardner ae1a3f9e79 BAEL-6334 Improve test names and typos 2023-05-18 10:27:08 +01:00
Bhaskar Ghosh Dastidar da265d4f81 [BAEL-6339] custom iterator with testcases (#14038)
Co-authored-by: Bhaskar <bhaskar.dastidar@freshworks.com>
2023-05-17 13:32:04 -07:00
Andrew Tarry 5ca5a1e8e7 add value of comparision 2023-05-17 21:23:14 +03:00
edizor 73885aade0 Update README.md
[skip ci]
2023-05-17 21:12:44 +08:00
edizor 768e6b767a Update README.md
[skip ci]
2023-05-17 20:58:22 +08:00
edizor 2248a39409 Update README.md
[skip ci]
2023-05-17 20:54:43 +08:00
edizor 558f03a8d2 Update README.md
[skip ci]
2023-05-17 20:42:22 +08:00
edizor 9f2bee0824 Update README.md
[skip ci]
2023-05-17 20:36:14 +08:00
edizor 1f9c1fdb37 Update README.md
[skip ci]
2023-05-17 20:33:02 +08:00
edizor 4e27f78bf0 Update README.md
[skip ci]
2023-05-17 20:28:36 +08:00
edizor ff2ca36926 Update README.md
[skip ci]
2023-05-17 20:24:12 +08:00
Michael Olayemi 43c4e4b337 Hashing with Argon2 in Java (#14009)
* Hashing with Argon2 in Java

* Hashing with Argon2 in Java
2023-05-16 20:51:10 +05:30
Azhwani 389a106697 BAEL-6398: Java PrintStream to String (#13998) 2023-05-16 08:28:25 +02:00
Bahaa El-Din Helmy 2da5d14e25 Add files via upload (#14006) 2023-05-15 08:14:21 -07:00
Dileesha Rajapakse 65f6f416c5 Add java interface single implementation examples (#13972) 2023-05-14 22:45:57 +05:30
Ehsan Sasanianno 4fb65f5c6e JAVA-16946 Upgrade h2 database version for remaining modules (#13976) 2023-05-14 20:13:06 +03:00
Vartika Nigam e1272ca8fe BAEL-6264 added class to show how to instantiate ArrayBlockingQueue a… (#13851)
* BAEL-6264 added class to show how to instantiate ArrayBlockingQueue and LinkedBlockingQueue

* BAEL-6264 added unit test case

* modified test case

* BAEL-6264 deleted BlockingQueueImplExample file not needed anymore

* BAEL-6264 code review changes moved class file to different module

---------

Co-authored-by: Vartika_Nigam <Vartika_Nigam@DellTeam.com>
2023-05-13 10:32:14 -05:00
Kai Yuan 535d967fd9 [os-to-is] Convert an OutputStream to an InputStream (#13992) 2023-05-13 10:09:08 -05:00
Sam Gardner 956660497a BAEL-6334 Add example code for checking if a list element is in another list 2023-05-12 11:58:08 +01:00
Loredana Crusoveanu f9da3f6b9c Merge pull request #14000 from edizor/master
Update README
2023-05-12 10:53:15 +03:00
Bahaa El-Din Helmy 1bf1ad2a3a Title: Regular Expression: \z vs \Z Anchors in Java (#13994)
Hello,
This commit related to the article entitled "Regular Expression: \z vs \Z Anchors in Java"
2023-05-11 09:18:45 -07:00
edizor 11ecd39504 Update README.md
[skip ci]
2023-05-12 00:02:53 +08:00
edizor aba6f36ac7 Create README.md
[skip ci]
2023-05-12 00:01:07 +08:00
edizor 035717faa7 Update README.md
[skip ci]
2023-05-11 23:59:08 +08:00
edizor 2556be758d Update README.md
[skip ci]
2023-05-11 23:52:22 +08:00
edizor 03cc9c90b7 Update README.md
[skip ci]
2023-05-11 23:42:17 +08:00
edizor b22707d69e Update README.md
[skip ci]
2023-05-11 23:33:10 +08:00
brokenhardisk 4192bf3bdc BAEL-6342 JUnit Test Class for Null and Empty String (#13963) 2023-05-11 09:23:11 +05:30
Kai Yuan a74f4ec8f5 [scanner-to-array] Saving Java Scanner Input to an Array (#13969) 2023-05-10 20:29:50 -05:00
Kilian Schneider c06e1ab413 BAEL-6185 reuse string builder performance (#13791) 2023-05-10 07:39:34 -07:00
Anastasios Ioannidis 1ff112228c JAVA-19152 Increased the awaitility timeout for one more poll delay (#13975) 2023-05-09 12:55:49 +03:00
davidmartinezbarua 1fd15c9557 Merge pull request #13934 from thibaultfaure/articles/BAEL-6438-find-longest-word-in-given-string
BAEL-6438 Code for the Find the longest word in a given string article
2023-05-09 00:41:01 -03:00
Bahaa El-Din Helmy 53d269ca68 Add files via upload (#13978) 2023-05-08 14:11:33 -07:00
Eugene Kovko 4cc0380249 BAEL-6501 Update article "The producer-consumer problem example in Java" (#13973)
* BAEL-6501 Changed the synchronization block to use the DataQueue

* BAEL-6501 Fixed the platform agnostic new lines

* BAEL-6501 Moved ID increment to a static method

* BAEL-6501 Added a logger
2023-05-08 14:04:21 -07:00
3hsan e16bd13cc8 JAVA-16946: disable unit test for core-java-lang-oop-modifiers module for maintenance (#13968) 2023-05-08 17:13:49 +03:00
3hsan bc19c39c52 JAVA-19152: fix intermittently failing RequestProcessorUnitTest (#13957) 2023-05-08 15:53:44 +03:00
Kai Yuan 65cf74f42f [compByteArrays] Comparing Two Byte Arrays in Java (#13935) 2023-05-07 10:05:37 -05:00
Loredana Crusoveanu 8e6f7bf490 Merge pull request #13956 from edizor/master
Update README
2023-05-07 08:10:20 +03:00
Bhaskar Ghosh Dastidar ce79066afc [BAEL-6253] record equals hashcode (#13958)
* [BAEL-6253] records equals and hashcode

* [BAEL-6253] records equals and hashcode

* [BAEL-6253] records equals and hashcode test case

---------

Co-authored-by: Bhaskar <bhaskar.dastidar@freshworks.com>
2023-05-06 09:28:20 -07:00
Kai Yuan dea82bf189 [BAEL-6485_RM-Punctuation] Remove Punctuation (#13946) 2023-05-05 20:11:54 -05:00
ACHRAF TAITAI 3ab60dc307 BAEL-6332: Calling Non-Static Method In Static Method In Java (#13940) 2023-05-05 22:25:50 +02:00
thibault.faure daf01922de BAEL-6438 Code for the Find the longest word in a given string article 2023-05-05 20:50:54 +02:00
edizor 7d26ae4a5e Update README.md
[skip ci]
2023-05-06 00:19:31 +08:00
edizor 35d5f583ac Update README.md
[skip ci]
2023-05-06 00:15:22 +08:00
edizor bb7a389e01 Update README.md
[skip ci]
2023-05-06 00:09:33 +08:00
edizor cc061011c7 Update README.md
[skip ci]
2023-05-05 23:28:38 +08:00
edizor 69e5f59d4b Update README.md
[skip ci]
2023-05-05 23:24:09 +08:00
edizor f37f777d93 Update README.md
[skip ci]
2023-05-05 21:41:29 +08:00
Ana Peterlić d313b76fc7 BAEL-5814 - Is CompletableFuture Non-blocking (#13917)
* BAEL-5814 - Is CompletableFuture Non-blocking

* Fix the formatting
2023-05-04 07:25:07 +05:30
Arya 23ec3d24d2 Added the code for "The difference between BufferedReader and FileReader". (#13942) 2023-05-03 14:52:17 -07:00
Daniel Strmecki 078826eef5 BAEL-6254: Scoped values (#13756) 2023-05-03 21:00:47 +01:00
press0 bd04051b9e Merge branch 'eugenp:master' into master 2023-05-02 21:40:51 -05:00
Kai Yuan 5cac883023 [BAEL-6436_printQuotesAroundString] Print "" Quotes Around a String in Java (#13925) 2023-05-02 16:31:35 -05:00
Alejamdro dbf99bc402 BAEL-6327 - Find the index of an element in a Java array (#13844) 2023-05-02 19:04:36 +05:30
Azhwani 7d86466fb7 BAEL-6435: Reverse a String in Java 8 using Lambda and Streams (#13910) 2023-05-02 08:29:16 +02:00
Shaun Phillips 18834b349e BAEL-6325 Create core-java-lang-oop-constructors-2 (#13933)
* BAEL-5915 Added different ways to create an object

* BAEL-6325 Create core-java-lang-oop-constructors-2
2023-05-01 19:53:21 -07:00
Loredana Crusoveanu 2d2c842d2f Merge pull request #13920 from edizor/master
Update README
2023-04-30 11:23:00 +03:00
Kai Yuan d085dae380 [BAEL-6434_charAndString] Difference Between "char" and "String" (#13907) 2023-04-28 18:06:34 -05:00
Azhwani f1ac6f1857 BAEL-6352: Check if the First Letter of a String is a Number (#13883) 2023-04-29 00:13:35 +02:00
edizor 86e237a142 Update README.md
[skip ci]
2023-04-28 21:29:45 +08:00
edizor 1ad6fdca44 Update README.md
[skip ci]
2023-04-28 21:15:28 +08:00
edizor 6b2b4eb4cb Update README.md
[skip ci]
2023-04-28 21:02:28 +08:00
edizor d3328aa8a6 Update README.md
[skip ci]
2023-04-28 20:53:23 +08:00
edizor 51adee522f Update README.md
[skip ci]
2023-04-28 20:25:11 +08:00
edizor 403c4cf467 Update README.md
[skip ci]
2023-04-28 20:10:52 +08:00
Loredana Crusoveanu ba0f7855eb Merge pull request #13640 from pjfanning/patch-2
simplify StandardCharsets use
2023-04-28 11:02:57 +03:00
press0 bf1e9aa588 Merge branch 'eugenp:master' into master 2023-04-26 17:02:40 -05:00
Bogdan Cardoş c8cd042d64 BAEL-6079 Code examples from article (#13486)
* BAEL-6079 Code examples from article

* BAEL-6079 Code examples from article

* BAEL-6079 Code examples from article update

* BAEL-6079 Code examples from article update
2023-04-26 08:30:27 +02:00
Kai Yuan 178782aebf [BAEL-6442_Build-URL] create URL objects using apache httpclient & spring-web (#13892) 2023-04-24 19:35:42 -05:00
anuragkumawat 90f2d165bf JAVA-20496 Non-article code: rawtypes and sandbox packages (#13886)
* JAVA-14232 Dissolving core-java module completed
2023-04-24 10:40:47 +03:00
Kai Yuan b00b487b4c [BAEL-6371_char_frequence] Find the Most Frequent Characters in a String (#13877) 2023-04-23 20:46:39 -05:00
Kai Yuan d5b60345cf [BAEL-6353_After-regex-match] Getting the Text That Follows After the Regex Match in Java (#13839) 2023-04-22 17:25:06 -05:00
Loredana Crusoveanu 2852feab1c Merge pull request #13881 from eugenp/lor6-patch-2
Create README.md
2023-04-21 18:53:09 +03:00
Loredana Crusoveanu c63f0d1c08 Create README.md 2023-04-21 18:48:58 +03:00
Loredana Crusoveanu aa310ba299 Update README.md 2023-04-21 18:48:42 +03:00
Loredana Crusoveanu 9bace94aae Merge pull request #13815 from bhaskar16/JAVA-6173-parallel-stream-difference-change-location
[JAVA-6173] stream.parallelStream and Collections parallel stream differnces
2023-04-21 18:48:10 +03:00
Loredana Crusoveanu 977c18e59a Merge pull request #13879 from eugenp/lor6-patch-2
Update README.md
2023-04-21 18:44:58 +03:00
Loredana Crusoveanu 3706cc38c5 Update README.md 2023-04-21 18:40:28 +03:00
Loredana Crusoveanu 48d4f9ab07 Update README.md 2023-04-21 18:40:15 +03:00
Kai Yuan d19a53c2d3 [BAEL-6363_nextInt-vs-nextLine] Integer.parseInt(scanner.nextLine()) vs scanner.nextInt() in Java (#13858) 2023-04-20 17:41:34 -05:00
anuragkumawat fbc3b5920b JAVA-19119 Move article Java Money and the Currency API to core-java-lang-math-3 module (#13602)
* JAVA-19119 Move article Java Money and the Currency API to core-java-lang-math-3 module
2023-04-20 19:21:19 +03:00
anuragkumawat b7ea8e622d Java 19120 Code review changes (#13747)
* JAVA-19120 Move article Lambda Expression vs. Anonymous Inner Class to core-java-8-2 module

---------

Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com>
2023-04-20 18:40:19 +03:00
edizor 6cf91e7eca Update README.md
[skip ci]
2023-04-20 17:48:05 +08:00
edizor e77b3ae85a Update README.md
[skip ci]
2023-04-20 17:30:31 +08:00
edizor c17f95c27c Update README.md
[skip ci]
2023-04-20 17:28:12 +08:00
edizor 2dd966206c Update README.md
[skip ci]
2023-04-20 17:19:59 +08:00
edizor 67fa63242d Update README.md
[skip ci]
2023-04-20 17:17:22 +08:00
edizor 90b9b536ff Update README.md
[skip ci]
2023-04-20 17:13:37 +08:00
Loredana Crusoveanu b01a849724 Merge pull request #13842 from edizor/master
Update README
2023-04-18 13:31:26 +03:00
Eugene Kovko ae04ab2510 feat: BAEL-5947 External Debugging with JMXTerm (#13847)
* feat: BAEL-5947 External Debugging with JMXTerm

* fix: Removed a faulty test

* fix: Change Random to ThreadLocalRandom

* fix: Renamed a method

* fix: Formatting fix
2023-04-16 20:14:50 -07:00
Dhawal Kapil e243694f39 JAVA-20211 Renamed modules (#13827)
* JAVA-20211 Renamed modules

* JAVA-20211 Renamed modules
2023-04-15 10:01:14 +05:30
panos-kakos 5471db832c [JAVA-15018] Removed redundant apache httpclient dependency + added commons-codec (#13828) 2023-04-14 18:38:12 +05:30
edizor f34c3e993b Update README.md
[skip ci]
2023-04-14 16:35:28 +08:00
tgvLt 5c2126b626 Parse dates with multiple formats (#13348)
Code examples for "Parsing Date Strings with Varying Formats"
2023-04-13 23:22:30 -06:00
sam-gardner ae52ba3968 BAEL-5771 Add code for url query manipulation in Java (#13820) 2023-04-13 19:02:41 +02:00
Eugene Kovko c255eb13c1 BAEL-4174: Java Modularity and Unit Testing (#13805)
* feat: Added two main modules

* feat: Renamed test module

* feat: Added scripts for compiling library modules

* feat: Added scripts for running core module

* feat: Added scripts for running test module

* fix: Fixed module name

* fix: Removed unnecessary module imports

* feat: Added script for running tests with patch

* fix: Remove unnecessary module path imports

* feat: Script for simple classpath tests

* fix: Updated output directory

* fix: Updated output directory for test compilation

* fix: Replace maven repository with local lib folder

* feat: Add lib folder

* feat: Update the scripts

* fix: Remove pom from test module

* fix: Update core pom dependencies

* fix: Remove test module from a parent pom

* fix: Removed jars and added a script

* fix: Fix a script

* fix: Fix pom conflict
2023-04-13 07:51:31 -07:00
Alejamdro 1787041bd8 BAEL-6078 - Convert an Integer Value into 2-Digit Hex Value in Java (#13682) 2023-04-13 08:31:45 +05:30
kpentaris 88a97dc6c2 Highcpu (#13821)
* Add application file for BAEL-4496

* Move BAEL-4496 code from core-java-19 to core-java-perf-2
2023-04-12 19:30:33 +02:00
anuragkumawat cf5d158622 JAVA-19115 Create new core-java-properties sub module under core-java-modules (#13669)
* JAVA-19115 Create new core-java-properties sub module under core-java-modules
2023-04-12 17:17:52 +05:45
anuragkumawat ae3429db29 JAVA-19116 Create new core-java-compiler sub module under core-java-modules (#13658)
* JAVA-19116 Create new core-java-compiler sub module under core-java-modules
2023-04-12 16:46:55 +05:45
Alexandru Borza 67d6b1533b Generating Time Based UUIDs (#13668)
* time-based UUIDs

* review

* review
2023-04-11 19:21:36 +01:00
Loredana Crusoveanu e819357f00 Merge pull request #13812 from ulisseslima/bael-322-quickfix_echo-server
BAEL-322 - quick fix - echo server loop
2023-04-11 14:31:59 +03:00
anuragkumawat 197d85d705 JAVA-19117 Create new core-java-documentation sub module under core-java-modules (#13619)
* JAVA-19117 Create new core-java-documentation sub module under core-java-modules
https://team.baeldung.com/browse/JAVA-19117
2023-04-11 13:04:28 +05:45
Azhwani 068915df2f BAEL-6313: Supporting ImmutableMap.ofEntries in Guava (#13751) 2023-04-11 08:38:52 +02:00
Bhaskar 685a9495d1 [JAVA-6173] stream.parallelStream and Collections parallel stream differences 2023-04-10 23:49:37 +05:30
Ulisses Lima 3ec56eab46 check client still readable 2023-04-10 14:17:51 -03:00
press0 1628c013c6 Merge branch 'eugenp:master' into master 2023-04-10 10:39:14 -05:00
press0@gmail.com aeb0bd3bd7 PR 2023-04-10 10:37:33 -05:00
jsgrah-spring 23c1abe3f2 JAVA-18116 Review log statements for projects - Week 7 - 2023 (#13583)
JAVA-18116 Review log statements for projects - Week 7 - 2023 (#13583)
---------

Co-authored-by: jogra <joseph.sterling.grah@miles.no>
2023-04-10 14:35:40 +03:00
anuragkumawat 26790b429f JAVA-19118 Create new core-java-locale sub module under core-java-modules (#13612)
* JAVA-19118 Create new core-java-locale sub module under core-java-modules
2023-04-10 15:22:29 +05:45
Loredana Crusoveanu 4792107e96 Merge pull request #13774 from dkapil/task/JAVA-19536_cd
JAVA-19536 Fix formatting of pom.xmls
2023-04-10 10:23:06 +03:00
Deboshree d694564141 https://jira.baeldung.com/browse/BAEL-5837
pass default value as method param
2023-04-10 08:30:15 +05:30
Loredana Crusoveanu 44b59b1ace Merge pull request #13788 from edizor/master
Update README
2023-04-09 10:29:33 +03:00
edizor 6e4502955a Update README.md
[skip ci]
2023-04-08 00:07:32 +08:00
Anastasios Ioannidis 57ad9ed32e JAVA-18131 Adjust core-java-jvm PrintClassLoaders to sync with article (#13780) 2023-04-07 21:33:05 +05:30
edizor c07f3eb890 Update README.md
[skip ci]
2023-04-07 23:56:46 +08:00
edizor 19e050852c Update README.md
[skip ci]
2023-04-07 23:51:06 +08:00
Iniubong LA f21cf9951b arthurshur (#13737)
* Creating a deep vs shallow copy of an object in Java

* Creating a deep vs shallow copy of an object in Java

* Baeldung article converting number bases

* Baeldung article converting number bases

* edits made to Converting a Number from One Base to Another in Java

* added braces to oneliners

* added precondition to check input

* String[] vs String...

* helper vs Utility classes

* helper vs utility classes code

* helper vs utility classes refactor

* utility vs helper class

* Helper vs utility

* helper vs utility classes

* refactor package name

* Revert "refactor package name"

This reverts commit d9464aa2de272b75ff7efe1c5ffb4de7fd4506e0.

* renamed package
2023-04-05 20:22:12 -05:00
Dhawal Kapil 7026b0abc9 JAVA-19536 Fix formatting of pom.xmls 2023-04-05 07:14:09 +05:30
Michael Olayemi 9c59017b4e I text (#13770)
* BAEL-6226 Calculate Pi Java Program

* BAEL-6226 Calculate Pi Java Program

* Calculate Pi Java Program
2023-04-05 06:44:45 +05:30
kpentaris 9df061c513 Add application file for BAEL-4496 (#13762) 2023-04-04 13:39:51 +02:00
Michael Olayemi 4cebc2aaf1 BAEL-6226 Calculate Pi Java Program (#13693)
* BAEL-6226 Calculate Pi Java Program

* BAEL-6226 Calculate Pi Java Program
2023-04-04 07:36:12 +05:30
panos-kakos 38ae7e56dd [JAVA-19668] (#13721)
* [JAVA-19668] Moved libraries-5 module to jdk9-and-above profile

* [JAVA-19668] Moved libraries-4 module to jdk9-and-above profile

* [JAVA-19668] Moved libraries-6 module to jdk9-and-above profile

* [JAVA-19668] Moved libraries module to jdk9-and-above profile + reverted changes fro libraries-6

* [JAVA-19668] Created libraries-jdk8 module

* [JAVA-19668] Clean up
2023-04-03 22:52:11 +05:30
Deboshree 60eb348df5 https://jira.baeldung.com/browse/BAEL-
moved the code to a different module
2023-04-03 15:11:48 +05:30
Kai Yuan 4027e83023 [str-to-uuid] uuid from string (#13736)
* [str-to-uuid] uuid from string

* [str-to-uuid] rename test methods
2023-04-01 10:06:23 -05:00
Kai Yuan c40bdd9f36 [BAEL-6297_boolean-to-str] convert boolean to java article (#13729)
* [BAEL-6297_boolean-to-str] convert boolean to java article

* [BAEL-6297_boolean-to-str] using Boolean.FALSE instead of false for the Boolean variable

* [BAEL-6297_boolean-to-str] rename test methods
2023-03-30 18:01:25 -05:00
Anastasios Ioannidis 11f740192c JAVA-18131 Upgrade core-java-modules to JDK 11 (#13462)
* JAVA-18131 Upgrade core-java-modules to JDK 11

* JAVA-18131 Fixed pom conflicts

* JAVA-18131 Upgraded ASM and updated expected test results

* JAVA-18131 Fixed FormatNumberUnitTest and removed core-java-security from upgrading to 17

* JAVA-18131 Removed core-java-sun from upgrading

* JAVA-18131 Removed core-java-jvm-2, fixed number test

* JAVA-18131 Removed core-java-sun from upgrading to 11

* JAVA-18131 Removed all edited submodules from pre-jdk9

* JAVA-18131 removed pre-jpms from pre-jdk9

* JAVA-18131 Removed core-java-numbers-3 from pre-jdk9 profiles

* JAVA-18131 Cleanup

* JAVA-18131 Cleanup 2 - Removed upgraded submodules from core-java-modules

* JAVA-18131 Cleanup completed

* JAVA-18131 Replaced core-java-modules submodules in main pom with core-java-modules

* JAVA-18131 Replaced core-java-modules submodules in main pom, continued

* JAVA-18131 Core-java-nio-2, core-java-serialization back to pre-jdk9

* JAVA-18131 Try removing math-3 from core-java-modules and explicitly refer in parent pom

* JAVA-18131 Removed -lang, -nio, -streams-2, -math-3, -conversions-2 from jdk9 profiles

* JAVA-18131 Corrected conversions-2 module

* JAVA-18131 Review fixes

* JAVA-18131 Fixed -nio, re-upgraded -lang

* JAVA-18131 Adapted -nio for JDK 11, returned -lang to JDK 8

* JAVA-18131 Final corrections
2023-03-31 01:39:12 +05:30
Loredana Crusoveanu 4d9f26ebe3 Merge pull request #13741 from edizor/master
Update README
2023-03-30 20:58:43 +03:00
anuragkumawat dd5badab9c JAVA-19058 Review the time of the build - Week 42 - 2022 (moved-18) (#13732) 2023-03-30 21:56:27 +05:30
edizor 2e0475372b Update README.md
[skip ci]
2023-03-30 22:30:42 +08:00
edizor 64a07a6802 Update README.md
[skip ci]
2023-03-30 22:14:12 +08:00
ACHRAF TAITAI e8fe289f85 Finding the Minimum Value in an ArrayList along with the Index Number… (#13498)
* Finding the Minimum Value in an ArrayList along with the Index Number in Java

* BAEL-6147: rename test unit method

* adapt test method name
2023-03-28 17:39:47 +05:30
Vini 50d78ab618 Merge pull request #13706 from ciphx/string_to_int_encapsulation
String to int encapsulation
2023-03-25 16:54:57 +01:00
Deboshree a7e7286515 https://jira.baeldung.com/browse/BAEL-
addressing PR comments
2023-03-24 23:17:33 +05:30
Bhaskar Ghosh Dastidar bc0627317c [JAVA-6173] Difference Between parallelStream() and stream().parallel() (#13653)
* [JAVA-6173] stream.parallel and parallelStream

* [JAVA-6173] stream.parallel and parallelStream test cases

---------

Co-authored-by: Bhaskar <bhaskar.dastidar@freshworks.com>
2023-03-24 10:40:30 -07:00
Deboshree 979b362ad1 https://jira.baeldung.com/browse/BAEL-
1. moving modules to java-string-conversions
2. fixing old broken test
2023-03-24 21:41:26 +05:30
timis1 be7213b147 JAVA-19534 Cleanup un-committed or un-ignored artifacts - Week 14 - 2023 (#13695)
Co-authored-by: timis1 <noreplay@yahoo.com>
2023-03-24 21:11:52 +05:30
edizor a081cdb378 Update README.md
[skip ci]
2023-03-24 16:29:14 +08:00
ciphx 20829a6110 Getiing date of first day of week (#13694)
* https://jira.baeldung.com/browse/BAEL-4630

* Revert "https://jira.baeldung.com/browse/BAEL-4630"

This reverts commit a81b091678a63ed138a8e8ddb452c1c4dbf0a69b.

* https://jira.baeldung.com/browse/BAEL-5874

* https://jira.baeldung.com/browse/BAEL-5874
1. changing test to use constructor instead of lombok plugin
2. reverting lombok plugin addition from pom.xml

* https://jira.baeldung.com/browse/BAEL-5874
moving files to core-java-date-operations-3

---------

Co-authored-by: Deboshree <deboshree.banerjee@cred.club>
2023-03-23 10:10:40 -07:00
timis1 163056b1ca JAVA-18228 Potential issue in "Producer-Consumer Problem With Example… (#13582)
JAVA-18228 Potential issue in "Producer-Consumer Problem With Example in Java" article
2023-03-22 10:26:22 +02:00
ciphx ca107bcc9f Getiing date of first day of week (#13689)
* https://jira.baeldung.com/browse/BAEL-4630

* Revert "https://jira.baeldung.com/browse/BAEL-4630"

This reverts commit a81b091678a63ed138a8e8ddb452c1c4dbf0a69b.

* https://jira.baeldung.com/browse/BAEL-5874

* https://jira.baeldung.com/browse/BAEL-5874
1. changing test to use constructor instead of lombok plugin
2. reverting lombok plugin addition from pom.xml

---------

Co-authored-by: Deboshree <deboshree.banerjee@cred.club>
2023-03-21 19:03:59 -07:00
Eugen b2accf8773 Merge pull request #13675 from edizor/master
Update README
2023-03-21 21:17:45 +02:00
Kai Yuan 4c2dcb190f [BAEL-6115_Num2Letter] Convert a Number to a Letter in Java (#13638)
* [BAEL-6115_Num2Letter] Convert a Number to a Letter in Java

* [BAEL-6115_Num2Letter] Change the 1st method's return type to char
2023-03-20 19:15:16 -05:00
ACHRAF TAITAI a529690d12 BAEL-4753: pass encoding parameter to the getBytes() (#13677)
* BAEL-4753: pass encoding parameter to the getBytes()

* BAEL-4753: pass encoding parameter to the getBytes()
2023-03-19 13:42:12 +01:00
edizor 4e0ecfd7f6 Update README.md
[skip ci]
2023-03-17 00:37:10 +08:00
edizor 9ccf76ea33 Update README.md
[skip ci]
2023-03-17 00:34:19 +08:00
edizor 83767a2f3c Update README.md
[skip ci]
2023-03-17 00:31:52 +08:00
edizor b824eb1e2a Update README.md
[skip ci]
2023-03-17 00:24:35 +08:00
edizor 39e0803bfd Update README.md
[skip ci]
2023-03-17 00:21:05 +08:00
PJ Fanning 98a3cddc47 simplify StandardCharsets use 2023-03-14 12:37:31 +01:00
ACHRAF TAITAI e04c6f1ed3 relocate code from core-java-modules/java.nio packageto core-java-modules/core-java-io-apis-2. (#13614) 2023-03-11 19:47:58 +01:00
Kai Yuan 911df283d4 [can-collect-return-null] Can Stream.collect() Return Null Value? (#13573)
* [can-collect-return-null] Can Stream.collect() Return Null Value?

* [can-collect-return-null] remove the .gitignore file
2023-03-10 18:04:00 -06:00
davidmartinezbarua 65c9b520ee Merge pull request #13549 from sam-gardner/BAEL-5836-Moving-items-in-an-arraylist
BAEL-5836 Add unit tests for moving items in an arraylist
2023-03-10 15:42:27 -03:00
Loredana Crusoveanu ebdd42e3fb Merge pull request #13607 from edizor/master
Update README
2023-03-09 12:04:27 +02:00
Loredana Crusoveanu 7bafe24397 Merge pull request #13608 from eugenp/BAEL-5727-v2
BAEL-5727 move article
2023-03-09 11:53:14 +02:00
anuragkumawat 4964958dfe JAVA-14232 JAVA-19120 Move article Lambda Expression vs. Anonymous Inner Class to core-java-lambdas module (#13603)
* JAVA-19120 Move article Lambda Expression vs. Anonymous Inner Class to core-java-lambdas module

* Update README.md

---------

Co-authored-by: Anastasios Ioannidis <121166333+anastasiosioannidis@users.noreply.github.com>
2023-03-09 11:45:08 +02:00
Loredana Crusoveanu a0ca91aa6f BAEL-5727 move article 2023-03-09 10:58:27 +02:00
anuragkumawat 10ab29202a JAVA-14232 JAVA-19121 Move article Difference Between Class.forName() and Class.forName().newInstance() to core-java-jvm-3 module (#13604) 2023-03-09 10:38:37 +02:00
edizor 24c77eb00d Update README.md
[skip ci]
2023-03-09 15:32:53 +08:00
edizor 46ab96c3af Update README.md
[skip ci]
2023-03-09 15:29:11 +08:00
Kai Yuan 0f8f3e0444 [stream-2maap-dup-keys] Handle Duplicated Keys When Producing Map Usi… (#13546)
* [stream-2maap-dup-keys] Handle Duplicated Keys When Producing Map Using Java Streamt

* [stream-2maap-dup-keys] create the *-streams-maps module

* [stream-2maap-dup-keys] add the new moudle to the parent pom
2023-03-08 19:37:48 -06:00
hajarrs f1dc5c2d60 Custom Constructors in Records (#13515) 2023-03-07 19:22:24 -07:00
Anastasios Ioannidis bd178710dc Java 16710 (#13471)
* JAVA-16710 Disabled reusing forks

* JAVA-16710 Try removing alphabetical order for tests
2023-03-06 23:56:19 +05:30
s047888 4b8a372be5 moved classes for BAEL-5727 to another module 2023-03-06 09:28:33 +01:00
Loredana Crusoveanu c73c8a6432 Merge pull request #13577 from edizor/master
Update README
2023-03-05 17:14:48 +02:00
ACHRAF TAITAI 6159c229ac BAEL-6192: Get the Desktop Path in Java (#13581) 2023-03-04 20:12:23 +01:00
edizor f685531203 Update README.md
[skip ci]
2023-03-04 10:49:47 +08:00
edizor 29656071c2 Create README.md
[skip ci]
2023-03-04 10:41:08 +08:00
IfThen2 6624802960 enum samples for bael6145 implementing toString() for enums (#13407)
* enum samples for bael6145 implementing toString() for enums

* updates from code review:
FastFood1: return empty string instead of null when no matching enum found
FastFood3: make enum name variable final

* make member variable private final in FastFoot3 enum
remove trailing comma in FastFoot2 enum
2023-03-02 21:15:38 +01:00
davidmartinezbarua dd20ceda79 Merge pull request #13341 from StefSC/BAEL-5788
[BAEL-5788] Accessing Private Constructor
2023-03-02 10:39:27 -03:00
Loredana Crusoveanu 416dc0492d Merge pull request #13373 from honeykakkar/patch-2
Fix link to the previous article in README.md
2023-03-01 19:47:43 +02:00
Sam Gardner 47b47b0fd9 BAEL-5836 Add unit tests for moving items in an arraylist 2023-02-27 15:47:00 +00:00
Michael Olayemi 41b3460af6 BAEL-5741 Download a Webpage in Java (#13531)
* BAEL-5741 Download a Webpage in Java

* BAEL-5741 Download a Webpage in Java

* BAEL-5741 Download a Webpage in Java

* BAEL-5741 Download a Webpage in Java

* BAEL-5741 Download a Webpage in Java
2023-02-26 08:56:44 +05:30
Shaun Phillips 8fd4ad46ea BAEL-5915 Added different ways to create an object (#13539) 2023-02-25 09:45:16 -08:00
edizor ae1621f6fd Update README.md
[skip ci]
2023-02-24 19:39:09 +08:00
edizor aeaa4beb84 Update README.md
[skip ci]
2023-02-24 19:35:00 +08:00
edizor 9a0a3f3b8c Update README.md
[skip ci]
2023-02-24 19:25:01 +08:00
edizor 941d8dbc7d Update README.md
[skip ci]
2023-02-24 19:22:20 +08:00
edizor 8ca6e679b1 Update README.md
[skip ci]
2023-02-24 19:18:00 +08:00
edizor e6f03563c9 Update README.md
[skip ci]
2023-02-24 19:15:33 +08:00
edizor 25e159150f Update README.md
[skip ci]
2023-02-24 19:11:49 +08:00
edizor b26d2b6932 Update README.md
[skip ci]
2023-02-24 19:08:29 +08:00
Ulisses Lima 8db563d9f9 deprecation 2023-02-22 22:19:08 -03:00
2406ankita 14ce0136bd Finding All Duplicates in a List in Java- BAEL-6075 (#13291)
* Deep & Shallow Copy

* Revert "Deep & Shallow Copy"

This reverts commit 62f75b002a21feb90c0b6be02072356b64284283.

* duplicates in a list in java

* Unit test changes

* unit test changes

* Tests change after review

* Code formatted

* code formatted

* new module core-java-lang-6

* entry in parent pom and test setup method name change

* module renamed

* parent pom entry added

* pom.xml changes reverted
2023-02-22 18:36:23 +05:30
alemoles 9089d84d2b BAEL-5912 Introduction to RoaringBitmap (#13326) 2023-02-21 21:50:33 +05:30
timis1 253c01ef4f JAVA-18445 Cleanup un-committed or un-ignored artifacts - Week 6 - 2023 (conti-1) (moved-1) (#13510)
Co-authored-by: timis1 <noreplay@yahoo.com>
2023-02-21 00:38:16 +05:30
Palaniappan Arunachalam 8f2e92dacb BAEL-6154: Migrate from Java 8 to Java 17 + tests (#13474) 2023-02-20 09:43:42 +05:30
edizor 1d7737dc5f Update README.md
[skip ci]
2023-02-19 08:02:49 +08:00
Bhaskar Ghosh Dastidar e11c4e3dbc [JAVA-6143] java copy from one hashmap to another (#13497)
Co-authored-by: Bhaskar <bhaskar.dastidar@freshworks.com>
2023-02-18 08:57:14 -08:00
Shaun Phillips ba8a44b0ca BAEL-4487 remove padding that causes non-deterministic behaviour (#13425) 2023-02-18 13:09:04 +01:00
sam-gardner 92864107b9 BAEL-6100-Add-example-code-for-integer-array-to-strings-using-streams… (#13375)
* BAEL-6100-Add-example-code-for-integer-array-to-strings-using-streams-tutorial

* BAEL-6100 remove wrongly added README update

* BAEL-6100 Add interger array to single string example

* BAEL-6100 Correct typo in test class name
2023-02-18 09:53:54 +05:30
AttilaUhrin 4acdb03e61 [BAEL-6027] Add example for Awaitility and Thread.sleep comparison (#13450)
* Add example for Awaitility and Thread.sleep comparison

* Fix unit test method name and indentation.

* Use property in pom.xml for awaitility dependency version.

---------

Co-authored-by: Uhrin Attila <attila.uhrin@frontendart.com>
2023-02-18 08:34:25 +05:30
davidmartinezbarua db2d8069e3 Merge pull request #13475 from StefSC/BAEL-5788-Private-Constructor
[BAEL-5788] Accessing Private Constructor
2023-02-17 21:03:32 -03:00
Kai Yuan 95fd310053 [2lists-to-map] Combining Two Lists into a Map in Java (#13484)
* [2lists-to-map] Combining Two Lists into a Map in Java

* [2lists-to-map] rename package
2023-02-17 10:04:37 -06:00
edizor d338276216 Update README.md
[skip ci]
2023-02-17 18:49:11 +08:00
edizor ad5d08e619 Update README.md
[skip ci]
2023-02-17 18:44:12 +08:00
edizor 2ea6076ed8 Update README.md
[skip ci]
2023-02-17 18:36:58 +08:00
edizor bbe335889c Update README.md
[skip ci]
2023-02-17 18:27:38 +08:00
edizor cd0f18fcfb Update README.md
[skip ci]
2023-02-17 17:27:55 +08:00
edizor 0b4f4d5566 Update README.md
[skip ci]
2023-02-17 17:01:56 +08:00
Loredana Crusoveanu c85a69f2cc Merge pull request #13316 from anastasiosioannidis/JAVA-17608
JAVA-7608
2023-02-15 16:26:12 +02:00
Anastasios Ioannidis ed51bc4cda JAVA-17608 Restored AtomicInteger default increment method 2023-02-15 10:14:28 +02:00
Iniubong LA e173c125f0 Difference Between Function(String… args) and Function(String[] args) (#13473) 2023-02-15 08:07:51 +01:00
Stef Serban-Cristian cb308a89e8 [BAEL-5788] Accessing Private Constructor 2023-02-13 23:42:35 +02:00
Kai Yuan 8e7055060f [is-object-array] Check if Object is an Array in Java (#13463) 2023-02-12 23:14:55 -06:00
Alexandru Borza 5b852b64b5 BAEL-6195 Find the First Embedded Occurrence of an Integer in a Java String (#13448)
* initialize arraylist with null or zeros

* configure pom parent

* move code

* delete module

* BAEL-6195

* first occurence of an integer

* review changes
2023-02-11 10:08:29 +05:30
Michael Olayemi 749cace098 BAEL-5729 Convert Hex to RGB Using Java (#13432) 2023-02-11 09:49:29 +05:30
Roger 5fb9fe4642 BAEL-5720 Java HttpClient Connection Management (#13452)
* BAEL-5642 Using @NotNull as a method parameter

* BAEL-5642 Add Spring Boot and bump spring and hibernate-validator versions

* BAEL-5720 Java HttpClient Connection Management

* BAEL-5720 Java HttpClient Connection Management

* BAEL-5720 move JavaHttpClient test to core-java-httpclient module

* BAEL-5720 move jetty-logging-properties to core-java-httpclient module

* BAEL-5720 add wiremock to pom

* Update pom.xml

* Delete jetty-logging.properties

---------

Co-authored-by: Loredana Crusoveanu <lore.crusoveanu@gmail.com>
2023-02-10 08:19:24 -08:00
Arya e48229dc25 Record vs Final class in Java (#13455)
* Added code for record vs final.

* Fixed a small mistake.
2023-02-09 09:58:24 -08:00
edizor a621e30de6 Update README.md
[skip ci]
2023-02-09 08:01:56 +08:00
edizor 220a73e43b Update README.md
[skip ci]
2023-02-09 07:51:27 +08:00
edizor ada858078f Update README.md
[skip ci]
2023-02-09 07:18:14 +08:00
edizor 66ebab819e Update README.md
[skip ci]
2023-02-09 07:13:07 +08:00
Dmitriy Budim 6a7adf631d [Difference Between Class.forName() and Class.forName().newInstance()] sample code (#13451) 2023-02-08 22:48:26 +01:00
timis1 940cc28ef5 JAVA-17333 Update Java Timer Article (#13423)
* JAVA-17333 Update Java Timer Article

* JAVA-17333 Rename the test class

---------

Co-authored-by: timis1 <noreplay@yahoo.com>
2023-02-08 21:47:09 +05:30
Kai Yuan 0adee1c8d7 [streamOf-vs-intStreamRange] Understanding the Difference Between Str… (#13429)
* [streamOf-vs-intStreamRange] Understanding the Difference Between Stream.of and IntStream.range

* [streamOf-vs-intStreamRange] fix indent
2023-02-07 18:49:49 -06:00
vunamtien 35e516d31e BAEL-6049-validate-ipv4-address (#13287)
* validate ipv4

* add unit test

* add more unit tests

* add more unit tests

* add more unit test

---------

Co-authored-by: tienvn4 <tienvn4@ghtk.co>
2023-02-06 18:54:29 +00:00
Kai Yuan c0be80a64a [instanceOf-stream] Checking instanceof in Java Stream (#13419) 2023-02-04 10:12:16 -06:00
Loredana Crusoveanu 03aa2d8920 Merge pull request #13416 from edizor/master
Update README
2023-02-03 17:32:16 +02:00
Ulisses Lima 98560f9d93 calling start() (#13417) 2023-02-02 22:43:55 +01:00
edizor 5ae8fa5069 Update README.md
[skip ci]
2023-02-02 23:29:26 +08:00
edizor c31505b584 Update README.md
[skip ci]
2023-02-02 23:27:36 +08:00
edizor 8765a412dc Update README.md
[skip ci]
2023-02-02 23:20:20 +08:00
edizor ccd2927e3a Update README.md
[skip ci]
2023-02-02 23:00:22 +08:00
edizor 6c90868613 Update README.md
[skip ci]
2023-02-02 22:55:14 +08:00
edizor 04ad33b9ba Update README.md
[skip ci]
2023-02-02 22:37:10 +08:00
Kai Yuan cb98df168b [abs-int-diff] Return Absolute Difference Between Two Integers in Java (#13379) 2023-02-01 21:01:09 -06:00
Olu c919c5e70c BAEL 5932 - Callback Functions in Java (#13364) 2023-02-01 08:04:40 +01:00
Kai Yuan 226fa47606 [strArrayToIntArray] convert str array to int array (#13217) 2023-01-31 20:11:14 -06:00
davidmartinezbarua ba8f9a6437 Merge pull request #13077 from sebx59/master
BAEL-5727 - Determine If a Class Implements an Interface in Java
2023-01-31 17:25:50 -03:00
sebx59 587d69af32 updated Unit test to add assertions examples 2023-01-31 09:23:52 +01:00
Bhaskar Ghosh Dastidar 9d3667ac77 [JAVA-5783] stream to iterable (#13369)
* [JAVA-5783] stream to iterable

* [JAVA-5783] tests refactor

---------

Co-authored-by: Bhaskar <bhaskar.dastidar@freshworks.com>
2023-01-31 08:16:11 +05:30
alemoles b40a061969 BAEL-5924 Java 8 Stream with Batch Processing Support (#13366) 2023-01-30 22:49:57 +05:30
Loredana Crusoveanu aab7f72429 Merge pull request #13363 from timis1/JAVA-17293
JAVA-17293 Update Java Mail articles
2023-01-30 13:08:45 +02:00
Alexandru Borza 068d3cc439 BAEL-6146 - Initialize an ArrayList with All Zeroes or Null in Java (#13368)
* initialize arraylist with null or zeros

* configure pom parent

* move code

* delete module
2023-01-29 14:51:12 -08:00
Honey Kakkar aecdc1a38d Fix link to the previous article in README.md
Currently, "prev" points to "/core-java-modules/core-java-collections-1" which is not a valid relative directory in repository.
2023-01-29 13:51:18 -05:00
Kai Yuan 7605f8474c [int-zero-or-null] Check if an Integer Value is null or Zero in Java (#13332) 2023-01-28 11:29:20 -06:00
Loredana Crusoveanu f75949b0e4 Merge pull request #13359 from ulisseslima/bael-5999-quickfix_compile-string
BAEL-5999 - Compiling and Executing Code From a String in Java - quick fix
2023-01-28 17:27:19 +02:00
Iulian Timis de1c280736 JAVA-17293 Fix java version problem for java bind 2023-01-28 16:16:01 +02:00
Iulian Timis 601af9b61a JAVA-17293 Update Java Mail articles for core-java-networking-3 2023-01-28 13:15:21 +02:00
Iulian Timis 2db1dd4a60 JAVA-17293 Update Java Mail articles 2023-01-28 12:47:15 +02:00
Kai Yuan 185093c26a [comp-str-enum] Comparing a String to an Enum Value in Java (#13349) 2023-01-27 20:56:13 -06:00
Olu d7e857f427 BAEL 5932 - Callback Functions in Java (#13335) 2023-01-27 21:37:47 +01:00
Ulisses Lima b389ecad46 inverting condition to match the article 2023-01-27 13:32:59 -03:00
Michael Olayemi b5d8f4e93c BAEL-5952-Java HttpClient - Map Json Response to Java Class (#13234)
* Java HttpClient - Map Json Response to Java Class

* BAEL-5952-Java HttpClient - Map Json Response to Java Class

* BAEL-5952-Java HttpClient - Map Json Response to Java Class

* Java HttpClient - Map Json Response to Java Class

* Java HttpClient - Map Json Response to Java Class

* Java HttpClient - Map Json Response to Java Class

* Java HttpClient - Map Json Response to Java Class

* Java HttpClient - Map Json Response to Java Class

* Java HttpClient - Map Json Response to Java Class

* Java HttpClient - Map Json Response to Java Class

* Java HttpClient - Map Json Response to Java Class

* Java HttpClient - Map Json Response to Java Class

* Java HttpClient - Map Json Response to Java Class

* Java HttpClient - Map Json Response to Java Class

* Java HttpClient - Map Json Response to Java Class

* Java HttpClient - Map Json Response to Java Class

* Java HttpClient - Map Json Response to Java Class

* Java HttpClient - Map Json Response to Java Class
2023-01-27 12:52:01 +05:30
edizor ad45161555 Update README.md
[skip ci]
2023-01-26 16:21:14 +08:00
edizor ba0889aa72 Update README.md
[skip ci]
2023-01-26 16:16:09 +08:00
edizor 47698ae01c Update README.md
[skip ci]
2023-01-26 16:12:14 +08:00
edizor eb81632bc7 Update README.md
[skip ci]
2023-01-26 16:03:26 +08:00
edizor 1a4312f22b Update README.md
[skip ci]
2023-01-26 15:57:56 +08:00
Stef Serban-Cristian c467321957 [BAEL-5788] Accessing Private Constructor 2023-01-24 11:25:30 +02:00
Kilian Schneider 69f6e11088 BAEL-6091 structured concurrency (#13297) 2023-01-23 12:57:00 -08:00
timis1 ea9bf9ebeb JAVA-17420 Update The transient Keyword in Java Article (#13321)
Co-authored-by: Iulian Timis <iulian.timis@tora.com>
2023-01-23 23:57:35 +05:30
Kai Yuan 0162d98907 [bigDecimal-x-int] Multiply a BigDecimal By an Integer in Java (#13320) 2023-01-23 10:41:19 -06:00
hajarrs 4b3a693263 Check If Command Line Arguments Are Null in Java (#13246) 2023-01-23 19:04:39 +05:30
Vali Tuguran fa6b78233c BAEL-6040 Add Java List tests. (#13255)
* BAEL-6040 Add list interface example.

* BAEL-6040 Updated list iterator.

* BAEL-6040 Removed logger import.

* BAEL-6040 Added List interface tests.

* BAEL-6040 Update tests success names.

* BAEL-6040 Small names refactoring.

* BAEL-6040 Add new core-java-collections-5 module.

* BAEL-6040 Create module core-java-collections-list-5.

* BAEL-6040 Create module core-java-collections-list-5.
2023-01-21 21:39:34 -07:00
Azhwani 3b770c4dee BAEL-6044: Fix the IllegalArgumentException: No enum const class (#13171) 2023-01-21 16:16:18 +01:00
edizor b2731db3ef Update README.md
[skip ci]
2023-01-20 16:31:09 +08:00
edizor 5e420e34e1 Update README.md
[skip ci]
2023-01-20 16:27:49 +08:00
edizor 9b0daac640 Update README.md
[skip ci]
2023-01-20 16:24:48 +08:00