An open API service indexing awesome lists of open source software.

https://github.com/ninjakoala/nippy4j

A Java wrapper for Nippy
https://github.com/ninjakoala/nippy4j

java nippy nippy4j

Last synced: 3 months ago
JSON representation

A Java wrapper for Nippy

Awesome Lists containing this project

README

          

[![Clojars Project](https://img.shields.io/clojars/v/com.ninjakoala/nippy4j.svg)](https://clojars.org/com.ninjakoala/nippy4j) [![Build Status](https://travis-ci.org/ninjakoala/nippy4j.svg?branch=master)](https://travis-ci.org/ninjakoala/nippy4j)

```java
import com.ninjakoala.nippy4j.Nippy4J;

public static void main(String[] args) {
byte[] frozen = Nippy4J.freeze("something");
Nippy4J.thaw(frozen); // -> "something"
}
```

# nippy4j

Creates a Java wrapper for [Nippy](https://github.com/ptaoussanis/nippy).

## License

Copyright © 2016 Neil Prosser

Distributed under the Eclipse Public License either version 1.0 or (at your option) any later version.