Lodash plugin for underscore-java

The lodash plugin for underscore-java

License

License

GroupId

GroupId

com.github.javadev
ArtifactId

ArtifactId

underscore-lodash
Last Version

Last Version

1.26
Release Date

Release Date

Type

Type

jar
Description

Description

Lodash plugin for underscore-java
The lodash plugin for underscore-java
Project URL

Project URL

https://github.com/javadev/underscore-java
Source Code Management

Source Code Management

https://github.com/javadev/underscore-java

Download underscore-lodash

How to add to project

<!-- https://jarcasting.com/artifacts/com.github.javadev/underscore-lodash/ -->
<dependency>
    <groupId>com.github.javadev</groupId>
    <artifactId>underscore-lodash</artifactId>
    <version>1.26</version>
</dependency>
// https://jarcasting.com/artifacts/com.github.javadev/underscore-lodash/
implementation 'com.github.javadev:underscore-lodash:1.26'
// https://jarcasting.com/artifacts/com.github.javadev/underscore-lodash/
implementation ("com.github.javadev:underscore-lodash:1.26")
'com.github.javadev:underscore-lodash:jar:1.26'
<dependency org="com.github.javadev" name="underscore-lodash" rev="1.26">
  <artifact name="underscore-lodash" type="jar" />
</dependency>
@Grapes(
@Grab(group='com.github.javadev', module='underscore-lodash', version='1.26')
)
libraryDependencies += "com.github.javadev" % "underscore-lodash" % "1.26"
[com.github.javadev/underscore-lodash "1.26"]

Dependencies

compile (1)

Group / Artifact Type Version
com.github.javadev : underscore jar 1.30

test (1)

Group / Artifact Type Version
junit : junit jar 4.12

Project Modules

There are no modules declared in this project.

underscore-java

Maven Central MIT License Build Status Coverage Status codecov.io CircleCI Codeship Status for javadev/underscore-java wercker status Build status Build Status Run Status Known Vulnerabilities Codacy Badge Sputnik Code Scene BCH compliance Quality Gate Quality Gate Scrutinizer Build Status Hits-of-Code Java Version

Join the chat at https://gitter.im/javadev/underscore-java

Requirements

Java 1.8 and later or Java 11.

Installation

Include the following in your pom.xml for Maven:

<dependencies>
  <dependency>
    <groupId>com.github.javadev</groupId>
    <artifactId>underscore</artifactId>
    <version>1.61</version>
  </dependency>
  ...
</dependencies>

Gradle:

compile 'com.github.javadev:underscore:1.61'

Usage

U.chain(/* array | list | set | map | anything based on Iterable interface */)
    .filter(..)
    .map(..)
    ...
    .sortWith()
    .forEach(..);
U.chain(value1, value2, value3)...
U.range(0, 10)...

U.chain(1, 2, 3) // or java.util.Arrays.asList(1, 2, 3) or new Integer[] {1, 2, 3}
    .filter(v -> v > 1)
    // 2, 3
    .map(v -> v + 1)
    // 3, 4
    .sortWith((a, b) -> b.compareTo(a))
    // 4, 3
    .forEach(System.out::println);
    // 4, 3
    
U.formatXml("<a><b>data</b></a>");
    // <a>
    //    <b>data</b>
    // </a>

U.formatJson("{\"a\":{\"b\":\"data\"}}");
    // {
    //    "a": {
    //      "b": "data"
    //    }
    // }

U.xmlToJson("<a><b>data</b></a>");
    // {
    //   "a": {
    //     "b": "data"
    //   },
    //   "#omit-xml-declaration": "yes"
    // }

U.jsonToXml("{\"a\":{\"b\":\"data\"}}");
    // <?xml version="1.0" encoding="UTF-8"?>
    // <a>
    //   <b>data</b>
    // </a>

Map<String, Object> value = U.objectBuilder()
    .add("firstName", "John")
    .add("lastName", "Smith")
    .add("age", 25)
    .add("address", U.arrayBuilder()
        .add(U.objectBuilder()
            .add("streetAddress", "21 2nd Street")
            .add("city", "New York")
            .add("state", "NY")
            .add("postalCode", "10021")))
    .add("phoneNumber", U.arrayBuilder()
        .add(U.objectBuilder()
            .add("type", "home")
            .add("number", "212 555-1234"))
        .add(U.objectBuilder()
            .add("type", "fax")
            .add("number", "646 555-4567")))
    .build();
    // {firstName=John, lastName=Smith, age=25, address=[{streetAddress=21 2nd Street,
    // city=New York, state=NY, postalCode=10021}], phoneNumber=[{type=home, number=212 555-1234},
    // {type=fax, number=646 555-4567}]}

Underscore-java is a java port of Underscore.js.

In addition to porting Underscore's functionality, Underscore-java includes matching unit tests.

For docs, license, tests, and downloads, see: https://javadev.github.io/underscore-java

Thanks to Jeremy Ashkenas and all contributors to Underscore.js.

Versions

Version
1.26
1.25
1.24
1.23
1.22
1.21
1.20
1.19
1.18
1.17
1.16
1.15
1.14
1.13
1.12
1.11
1.10
1.9
1.8
1.7
1.6
1.5
1.4
1.3
1.2
1.1
1.0