# cactoos
**Repository Path**: mirrors_andyglick/cactoos
## Basic Information
- **Project Name**: cactoos
- **Description**: Object-Oriented Java primitives, as an alternative to Google Guava and Apache Commons
- **Primary Language**: Unknown
- **License**: MIT
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2020-09-24
- **Last Updated**: 2026-02-28
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
[](https://www.0crat.com/contrib/C63314D6Z)
[](http://www.elegantobjects.org)
[](https://www.0crat.com/p/C63314D6Z)
[](http://www.rultor.com/p/yegor256/cactoos)
[](https://www.jetbrains.com/idea/)
[](https://travis-ci.org/yegor256/cactoos)
[](https://ci.appveyor.com/project/yegor256/cactoos)
[](http://www.javadoc.io/doc/org.cactoos/cactoos)
[](http://www.0pdd.com/p?name=yegor256/cactoos)
[](https://maven-badges.herokuapp.com/maven-central/org.cactoos/cactoos)
[](https://github.com/yegor256/cactoos/blob/master/LICENSE.txt)
[](http://i.jpeek.org/org.cactoos/cactoos/)
[](https://codecov.io/github/yegor256/cactoos?branch=master)
[](https://sonarcloud.io/dashboard?id=org.cactoos%3Acactoos)
**ATTENTION**: We're still in a very early alpha version, the API
may and _will_ change frequently. Please, use it at your own risk,
until we release version 1.0 (July 2017 May 2018).
Cactoos is a collection of object-oriented Java primitives.
**Motivation**.
We are not happy with
[JDK](https://en.wikipedia.org/wiki/Java_Development_Kit),
[Guava](https://github.com/google/guava), and
[Apache Commons](https://commons.apache.org/) because
they are procedural and not object-oriented. They do their job,
but mostly through static methods. Cactoos is suggesting
to do almost exactly the same, but through objects.
**Principles**.
These are the [design principles](http://www.elegantobjects.org#principles) behind Cactoos.
**How to use**.
The library has no dependencies. All you need is this
(get the latest version [here](https://github.com/yegor256/cactoos/releases)):
```xml
org.cactoos
cactoos
```
Java version required: 1.8+.
StackOverflow tag is [cactoos](https://stackoverflow.com/questions/tagged/cactoos).
## Input/Output
More about it here:
[Object-Oriented Declarative Input/Output in Cactoos](http://www.yegor256.com/2017/06/22/object-oriented-input-output-in-cactoos.html).
To read a text file in UTF-8:
```java
String text = new TextOf(
new File("/code/a.txt")
).asString();
```
To write a text into a file:
```java
new LengthOf(
new TeeInput(
"Hello, world!",
new File("/code/a.txt")
)
).intValue();
```
To read a binary file from classpath:
```java
byte[] data = new BytesOf(
new ResourceOf("foo/img.jpg")
).asBytes();
```
## Text/Strings
To format a text:
```java
String text = new FormattedText(
"How are you, %s?",
name
).asString();
```
To manipulate with a text:
```java
// To lower case
new LowerText(
new TextOf("Hello")
);
// To upper case
new UpperText(
new TextOf("Hello")
);
```
## Iterables/Collections/Lists/Sets
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).
To filter a collection:
```java
Collection filtered = new ListOf<>(
new Filtered<>(
s -> s.length() > 4,
new IterableOf<>("hello", "world", "dude")
)
);
```
To iterate a collection:
```java
new And(
new Mapped<>(
new FuncOf<>(
input -> {
System.out.printf("Item: %s\n", input);
}
),
new IterableOf<>("how", "are", "you")
)
).value();
```
Or even more compact:
```java
new And(
(String input) -> System.out.printf("Item: %s\n", input),
"how", "are", "you"
).value();
```
To sort a list of words in the file:
```java
List sorted = new ListOf<>(
new Sorted<>(
new SplitText(
new TextOf(
new File("/tmp/names.txt")
),
new TextOf("\\s+")
)
)
);
```
To count elements in an iterable:
```java
int total = new LengthOf(
"how", "are", "you"
).intValue();
```
## Funcs and Procs
This is a traditional `foreach` loop:
```java
for (String name : names) {
System.out.printf("Hello, %s!\n", name);
}
```
This is its object-oriented alternative (no streams!):
```java
new And(
names,
n -> {
System.out.printf("Hello, %s!\n", n);
}
).value();
```
This is an endless `while/do` loop:
```java
while (!ready) {
System.out.prinln("Still waiting...");
}
```
Here is its object-oriented alternative:
```java
new And(
new Endless<>(ready),
ready -> {
System.out.println("Still waiting...");
return !ready;
}
).value();
```
## Our objects vs. their static methods
Cactoos | Guava | Apache Commons | JDK 8
------ | ------ | ------ | ------
`And` | `Iterables.all()` | - | -
`Filtered` | `Iterables.filter()` | ? | -
`FormattedText` | - | - | `String.format()`
`IsBlank` | - | `StringUtils.isBlank()`| -
`JoinedText` | - | - | `String.join()`
`LengthOf` | - | - | `String#length()`
`LowerText` | - | - | `String#toLowerCase()`
`NormalizedText` | - | `StringUtils.normalize()` | -
`Or` | `Iterables.any()` | - | -
`RepeatedText` | - | `StringUtils.repeat()` | -
`ReplacedText` | - | - | `String#replace()`
`ReversedText` | - | - | `StringBuilder#reverse()`
`RotatedText` | - | `StringUtils.rotate()`| -
`SplitText` | - | - | `String#split()`
`StickyList` | `Lists.newArrayList()` | ? | `Arrays.asList()`
`SubText` | - | - | `String#substring()`
`SwappedCaseText` | - | `StringUtils.swapCase()` | -
`TextOf` | ? | `IOUtils.toString()` | -
`TrimmedLeftText` | - | `StringUtils.stripStart()` | -
`TrimmedRightText` | - | `StringUtils.stripEnd()` | -
`TrimmedText` | - | `StringUtils.stripAll()` | `String#trim()`
`UpperText` | - | - | `String#toUpperCase()`
## Questions
Ask your questions related to cactoos library on [Stackoverflow](https://stackoverflow.com/questions/ask) with [cactoos](https://stackoverflow.com/tags/cactoos/info) tag.
## How to contribute?
Just fork the repo and send us a pull request.
Make sure your branch builds without any warnings/issues:
```
mvn clean install -Pqulice
```
Note: [Checkstyle](https://en.wikipedia.org/wiki/Checkstyle) is used as a static code analyze tool with
[checks list](http://checkstyle.sourceforge.net/checks.html) in GitHub precommits.
## Contributors
- [@yegor256](https://github.com/yegor256) as Yegor Bugayenko ([Blog](http://www.yegor256.com))
- [@g4s8](https://github.com/g4s8) as Kirill Che. (g4s8.public@gmail.com)
- [@fabriciofx](https://github.com/fabriciofx) as Fabrício Cabral
- [@englishman](https://github.com/englishman) as Andriy Kryvtsun
- [@VsSekorin](https://github.com/VsSekorin) as Vseslav Sekorin
- [@DronMDF](https://github.com/DronMDF) as Andrey Valyaev
- [@dusan-rychnovsky](https://github.com/dusan-rychnovsky) as Dušan Rychnovský ([Blog](http://blog.dusanrychnovsky.cz/))
- [@timmeey](https://github.com/timmeey) as Tim Hinkes ([Blog](https://blog.timmeey.de))
- [@alex-semenyuk](https://github.com/alex-semenyuk) as Alexey Semenyuk
- [@smallcreep](https://github.com/smallcreep) as Ilia Rogozhin
- [@memoyil](https://github.com/memoyil) as Mehmet Yildirim
- [@llorllale](https://github.com/llorllale) as George Aristy
## License (MIT)
Copyright (c) 2017-2018 Yegor Bugayenko
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included
in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.