You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[Object-Oriented Declarative Input/Output in Cactoos](http://www.yegor256.com/2017/06/22/object-oriented-input-output-in-cactoos.html).
69
+
[Object-Oriented Declarative Input/Output in Cactoos][blog].
68
70
69
71
To read a text file in UTF-8:
70
72
@@ -119,7 +121,8 @@ new Upper(
119
121
120
122
## Iterables/Collections/Lists/Sets
121
123
122
-
More about it here: [Lazy Loading and Caching via Sticky Cactoos Primitives](http://www.yegor256.com/2017/10/17/lazy-loading-caching-sticky-cactoos.html).
124
+
More about it here:
125
+
[Lazy Loading and Caching via Sticky Cactoos Primitives][lazy-blog].
123
126
124
127
To filter a collection:
125
128
@@ -299,17 +302,21 @@ new And(
299
302
```
300
303
301
304
## Dates and Times
305
+
302
306
From our `org.cactoos.time` package.
303
307
304
-
Our classes are divided in two groups: those that parse strings into date/time objects, and those that format those objects into strings.
308
+
Our classes are divided in two groups: those that parse strings into
309
+
date/time objects, and those that format those objects into strings.
305
310
306
-
For example, this is the traditional way of parsing a string into an [OffsetDateTime](https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html):
311
+
For example, this is the traditional way of parsing a string into an
312
+
[OffsetDateTime]:
307
313
308
314
```java
309
315
finalOffsetDateTime date =OffsetDateTime.parse("2007-12-03T10:15:30+01:00");
310
316
```
311
317
312
-
Here is its object-oriented alternative (no static method calls!) using `OffsetDateTimeOf`, which is a `Scalar`:
318
+
Here is its object-oriented alternative (no static method calls!)
319
+
using `OffsetDateTimeOf`, which is a `Scalar`:
313
320
314
321
```java
315
322
finalOffsetDateTime date =newOffsetDateTimeOf("2007-12-03T10:15:30+01:00").value();
@@ -322,7 +329,7 @@ final OffsetDateTime date = ...;
322
329
finalString text =newTextOfDateTime(date).asString();
Ask your questions related to cactoos library on [Stackoverflow](https://stackoverflow.com/questions/ask) with [cactoos](https://stackoverflow.com/tags/cactoos/info) tag.
0 commit comments