Skip to content

Commit c5e1d6f

Browse files
committed
[BAEL-8456] - Moved more articles into 'java-dates' module
1 parent 3bd1ed4 commit c5e1d6f

23 files changed

+10
-11
lines changed

core-java-8/README.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
- [Finding Max/Min of a List or Collection](http://www.baeldung.com/java-collection-min-max)
1919
- [Java Base64 Encoding and Decoding](http://www.baeldung.com/java-base64-encode-and-decode)
2020
- [The Difference Between map() and flatMap()](http://www.baeldung.com/java-difference-map-and-flatmap)
21-
- [Display All Time Zones With GMT And UTC in Java](http://www.baeldung.com/java-time-zones)
2221
- [Copy a File with Java](http://www.baeldung.com/java-copy-file)
2322
- [Static and Default Methods in Interfaces in Java](http://www.baeldung.com/java-static-default-methods)
2423
- [Efficient Word Frequency Calculator in Java](http://www.baeldung.com/java-word-frequency)
@@ -30,15 +29,10 @@
3029
- [Finding Min/Max in an Array with Java](http://www.baeldung.com/java-array-min-max)
3130
- [Internationalization and Localization in Java 8](http://www.baeldung.com/java-8-localization)
3231
- [How to Find an Element in a List with Java](http://www.baeldung.com/find-list-element-java)
33-
- [Measure Elapsed Time in Java](http://www.baeldung.com/java-measure-elapsed-time)
3432
- [Java Optional – orElse() vs orElseGet()](http://www.baeldung.com/java-optional-or-else-vs-or-else-get)
3533
- [An Introduction to Java.util.Hashtable Class](http://www.baeldung.com/java-hash-table)
3634
- [Method Parameter Reflection in Java](http://www.baeldung.com/java-parameter-reflection)
3735
- [Java 8 Unsigned Arithmetic Support](http://www.baeldung.com/java-unsigned-arithmetic)
38-
- [How to Get the Start and the End of a Day using Java](http://www.baeldung.com/java-day-start-end)
3936
- [Generalized Target-Type Inference in Java](http://www.baeldung.com/java-generalized-target-type-inference)
40-
- [Calculate Age in Java](http://www.baeldung.com/java-get-age)
4137
- [Copy a List to Another List in Java](http://www.baeldung.com/java-copy-list-to-another)
42-
- [Increment Date in Java](http://www.baeldung.com/java-increment-date)
43-
- [Add Hours To a Date In Java](http://www.baeldung.com/java-add-hours-date)
4438
- [Overriding System Time for Testing in Java](http://www.baeldung.com/java-override-system-time)

core-java/README.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,6 @@
107107
- [Find Sum and Average in a Java Array](http://www.baeldung.com/java-array-sum-average)
108108
- [Java List UnsupportedOperationException](http://www.baeldung.com/java-list-unsupported-operation-exception)
109109
- [Type Erasure in Java Explained](http://www.baeldung.com/java-type-erasure)
110-
- [Display All Time Zones With GMT And UTC in Java](http://www.baeldung.com/java-time-zones)
111110
- [Join and Split Arrays and Collections in Java](http://www.baeldung.com/java-join-and-split)
112111
- [Check If Two Lists are Equal in Java](http://www.baeldung.com/java-test-a-list-for-ordinality-and-equality)
113112
- [Sending Emails with Java](http://www.baeldung.com/java-email)
@@ -132,13 +131,11 @@
132131
- [Guide to the this Java Keyword](http://www.baeldung.com/java-this)
133132
- [Jagged Arrays In Java](http://www.baeldung.com/java-jagged-arrays)
134133
- [Importance of Main Manifest Attribute in a Self-Executing JAR](http://www.baeldung.com/java-jar-executable-manifest-main-class)
135-
- [Extracting Year, Month and Day from Date in Java](http://www.baeldung.com/java-year-month-day)
136134
- [How to Get the File Extension of a File in Java](http://www.baeldung.com/java-file-extension)
137135
- [Immutable Objects in Java](http://www.baeldung.com/java-immutable-object)
138136
- [Console I/O in Java](http://www.baeldung.com/java-console-input-output)
139137
- [Guide to the java.util.Arrays Class](http://www.baeldung.com/java-util-arrays)
140138
- [Create a Custom Exception in Java](http://www.baeldung.com/java-new-custom-exception)
141-
- [Guide to java.util.GregorianCalendar](http://www.baeldung.com/java-gregorian-calendar)
142139
- [Java Global Exception Handler](http://www.baeldung.com/java-global-exception-handler)
143140
- [Encrypting and Decrypting Files in Java](http://www.baeldung.com/java-cipher-input-output-stream)
144141
- [How to Get the Size of an Object in Java](http://www.baeldung.com/java-size-of-object)

java-dates/README.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,12 @@
1313
- [Get the Current Date, Time and Timestamp in Java 8](http://www.baeldung.com/current-date-time-and-timestamp-in-java-8)
1414
- [Get Date Without Time in Java](http://www.baeldung.com/java-date-without-time)
1515
- [How to Get All Dates Between Two Dates?](http://www.baeldung.com/java-between-dates)
16-
- [Convert Date to LocalDate or LocalDateTime and Back](http://www.baeldung.com/java-date-to-localdate-and-localdatetime)
16+
- [Convert Date to LocalDate or LocalDateTime and Back](http://www.baeldung.com/java-date-to-localdate-and-localdatetime)
17+
- [Display All Time Zones With GMT And UTC in Java](http://www.baeldung.com/java-time-zones)
18+
- [Extracting Year, Month and Day from Date in Java](http://www.baeldung.com/java-year-month-day)
19+
- [Guide to java.util.GregorianCalendar](http://www.baeldung.com/java-gregorian-calendar)
20+
- [Measure Elapsed Time in Java](http://www.baeldung.com/java-measure-elapsed-time)
21+
- [How to Get the Start and the End of a Day using Java](http://www.baeldung.com/java-day-start-end)
22+
- [Calculate Age in Java](http://www.baeldung.com/java-get-age)
23+
- [Increment Date in Java](http://www.baeldung.com/java-increment-date)
24+
- [Add Hours To a Date In Java](http://www.baeldung.com/java-add-hours-date)

core-java/src/main/java/com/baeldung/datetime/DateExtractYearMonthDayIntegerValues.java renamed to java-dates/src/main/java/com/baeldung/datetime/DateExtractYearMonthDayIntegerValues.java

File renamed without changes.

core-java/src/main/java/com/baeldung/datetime/LocalDateExtractYearMonthDayIntegerValues.java renamed to java-dates/src/main/java/com/baeldung/datetime/LocalDateExtractYearMonthDayIntegerValues.java

File renamed without changes.

core-java/src/main/java/com/baeldung/datetime/LocalDateTimeExtractYearMonthDayIntegerValues.java renamed to java-dates/src/main/java/com/baeldung/datetime/LocalDateTimeExtractYearMonthDayIntegerValues.java

File renamed without changes.

core-java/src/main/java/com/baeldung/datetime/OffsetDateTimeExtractYearMonthDayIntegerValues.java renamed to java-dates/src/main/java/com/baeldung/datetime/OffsetDateTimeExtractYearMonthDayIntegerValues.java

File renamed without changes.

core-java/src/main/java/com/baeldung/datetime/ZonedDateTimeExtractYearMonthDayIntegerValues.java renamed to java-dates/src/main/java/com/baeldung/datetime/ZonedDateTimeExtractYearMonthDayIntegerValues.java

File renamed without changes.

core-java-8/src/main/java/com/baeldung/datetime/modify/DateIncrementer.java renamed to java-dates/src/main/java/com/baeldung/datetime/modify/DateIncrementer.java

File renamed without changes.

core-java/src/main/java/com/baeldung/gregorian/calendar/GregorianCalendarExample.java renamed to java-dates/src/main/java/com/baeldung/gregorian/calendar/GregorianCalendarExample.java

File renamed without changes.

0 commit comments

Comments
 (0)