Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/derive4j/derive4j

Java 8 annotation processor and framework for deriving algebraic data types constructors, pattern-matching, folds, optics and typeclasses.
https://github.com/derive4j/derive4j

algebra algebraic-data-types annotation-processor catamorphisms derive4j discriminated-unions exhaustiveness-checking fold functional-programming java java-8 laziness optics sum-types tagged-unions visitor visitor-pattern

Last synced: about 2 months ago
JSON representation

Java 8 annotation processor and framework for deriving algebraic data types constructors, pattern-matching, folds, optics and typeclasses.

Awesome Lists containing this project

README

        

# Derive4J: Java 8 annotation processor for deriving algebraic data types constructors, pattern matching and more!

[![Travis](https://travis-ci.org/derive4j/derive4j.svg?branch=master)](https://travis-ci.org/derive4j/derive4j)
[![codecov.io](https://codecov.io/github/derive4j/derive4j/branch/master/graph/badge.svg)](https://codecov.io/github/derive4j/derive4j)
[![Maven Central](https://img.shields.io/maven-central/v/org.derive4j/derive4j.svg)][search.maven]
[![Gitter Chat](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/derive4j/derive4j)

**tl;dr** [Show me how to write, say, the `Either` sum type with Derive4J!](https://gist.github.com/jbgi/d6035910e55b5b45d1e18553530d9d72).

## Table of contents
- [Example: a 'Visitor' for HTTP Request](#example-a-visitor-for-http-request)
- [Constructors](#constructors)
- [equals, hashCode, toString?](#equals-hashcode-tostring)
- [Pattern matching syntaxes](#pattern-matching-syntaxes)
- [Accessors (getters)](#accessors-getters)
- [Functional setters ('withers')](#functional-setters-withers)
- [First class laziness](#first-class-laziness)
- [Flavours](#flavours)
- [Optics (functional lenses)](#optics-functional-lenses)
- [Smart constructors](#smart-constructors)
- [Static methods export](#static-methods-export)
- [Updating deeply nested immutable data structure](#updating-deeply-nested-immutable-data-structure)
- [Popular use-case: domain specific languages](#popular-use-case-domain-specific-languages)
- [Catamorphisms](#catamorphisms)
- [Extensible algebraic data types](#extensible-algebraic-data-types)
- [But what exactly is generated?](#but-what-exactly-is-generated)
- [Parametric polymorphism](#parametric-polymorphism)
- [Generalized Algebraic Data Types](#generalized-algebraic-data-types)
- [DRY annotation configuration](#dry-annotation-configuration)
- [Use it in your project](#use-it-in-your-project)
- [Changelog](https://github.com/derive4j/derive4j/milestones?state=closed)
- [Contributing](#contributing)
- [Contact](#contact)

**Caution**: if you are not familiar with Algebraic Data Types or the "visitor pattern" then you may want to [learn a bit about them](#further-reading).

So, what can this project do for us, poor functional programmers stuck with a legacy language called Java?
A good deal of what is commonly available in better languages like Haskell, including:
- structural pattern matching on Algebraic data types, with compile-time exhaustiveness/redundancy check,
- laziness (a value can be a memoized [thunk](https://wiki.haskell.org/Thunk)),
- [automatic type class derivation](https://github.com/derive4j/derive4j-fj)
- [Generalised algebraic data types](https://wiki.haskell.org/GADT)
- combinators implementing [lenses](http://julien-truffaut.github.io/Monocle/optics/lens.html), [prisms](http://julien-truffaut.github.io/Monocle/optics/prism.html) and [optionals](http://julien-truffaut.github.io/Monocle/optics/optional.html).

Algebraic data types come in two flavours, product types and sum types. This readme focus on sum types because it is the more interesting case; product types being the well known common case in Java, but Derive4J handles product types in exactly the same fashion (ie. through a visitor interface with a single abstract method).

# Example: a 'Visitor' for HTTP Request

Let's say we want to model an HTTP request. For the sake of the example let's say that an HTTP request can either be
- a GET on a given ```path```
- a DELETE on a given ```path```
- a POST of a content ```body``` on a given ```path```
- a PUT of a content ```body``` on a given ```path```

and nothing else!

You could then use the [corrected visitor pattern](http://logji.blogspot.ch/2012/02/correcting-visitor-pattern.html) and write the following class in Java:

```java
package org.derive4j.example;

/** A data type to model an http request. */
@Data
public abstract class Request {

/** the Request 'visitor' interface, R being the return type
* used by the 'accept' method : */
interface Cases {
// A request can either be a 'GET' (of a path):
R GET(String path);
// or a 'DELETE' (of a path):
R DELETE(String path);
// or a 'PUT' (on a path, with a body):
R PUT(String path, String body);
// or a 'POST' (on a path, with a body):
R POST(String path, String body);
// and nothing else!
}

// the 'accept' method of the visitor pattern:
public abstract R match(Cases cases);

/**
* Alternatively and equivalently to the visitor pattern above, if you prefer a more FP style,
* you can define a catamorphism instead. (see examples)
* (most useful for standard data type like Option, Either, List...)
*/
}
```
## Constructors

Without Derive4J, you would have to create subclasses of ```Request``` for all four cases. That is, write at the minimum something like:
```java
public static Request GET(String path) {
return new Request() {
@Override
public R match(Cases cases) {
return cases.GET(path);
}
};}
```
for each case.
But thanks to the ```@Data``` annotation, Derive4j will do that for you! That is, it will generate a ```Requests``` class (the name is configurable, the class is generated by default in ```target/generated-sources/annotations``` when using Maven) with four static factory methods (what we call '*constructors*' in FP):
```java
public static Request GET(String path) {...}
public static Request DELETE(String path) {...}
public static Request PUT(String path, String body) {...}
public static Request POST(String path, String body) {...}
```
You can also ask Derive4J to generate null checks with:
```java
@Data(arguments = ArgOption.checkedNotNull)
```

## equals, hashCode, toString?
[Derive4J philosophy is to be as safe and consistent as possible](https://github.com/derive4j/derive4j/issues/50). That is why Object.{equals, hashCode, toString} are not implemented by generated classes by default (they are best kept ignored as they break parametricity). Nonetheless, as a concession to legacy, it is possible to force Derive4J to implement them, by declaring them abstract. Eg by adding the following in your annotated class:
```java
@Override
public abstract int hashCode();
@Override
public abstract boolean equals(Object obj);
@Override
public abstract String toString();
```
The safer solution would be to never use those methods and use 'type classes' instead, eg. [Equal](https://github.com/functionaljava/functionaljava/blob/master/core/src/main/java/fj/Equal.java), [Hash](https://github.com/functionaljava/functionaljava/blob/master/core/src/main/java/fj/Hash.java) and [Show](https://github.com/functionaljava/functionaljava/blob/master/core/src/main/java/fj/Show.java).
The project [Derive4J for Functional Java](https://github.com/derive4j/derive4j-fj) aims to generate them automatically.

## Pattern matching syntaxes
Now let's say that you want a function that returns the body size of a ```Request```. Without Derive4J you would write something like:
```java
static final Function getBodySize = request ->
request.match(new Cases() {
public Integer GET(String path) {
return 0;
}
public Integer DELETE(String path) {
return 0;
}
public Integer PUT(String path, String body) {
return body.length();
}
public Integer POST(String path, String body) {
return body.length();
}
});
```
With Derive4J you can do that a lot less verbosely, thanks to a generated fluent [structural pattern matching](http://www.deadcoderising.com/pattern-matching-syntax-comparison-in-scala-haskell-ml/) syntaxes! And it does exhaustivity check! (you must handle all cases). The above can be rewritten into:
```java
static final Function getBodySize = Requests.cases()
.GET_(0) // shortcut for .Get(path -> 0)
.DELETE_(0)
.PUT((path, body) -> body.length())
.POST((path, body) -> body.length())
```
or even (because you don't care of GET and DELETE cases):
```java
static final Function getBodySize = Requests.cases()
.PUT((path, body) -> body.length())
.POST((path, body) -> body.length())
.otherwise_(0)
```
Derive4j also allows to match directly against a value:
```java
static int getBodyLength(Request request) {
return Requests.caseOf(request)
.PUT((path, body) -> body.length())
.POST((path, body) -> body.length())
.otherwise_(0)
}
```

## Accessors (getters)
Now, pattern matching every time you want to inspect an instance of ```Request``` is a bit tedious. For this reason Derive4J generates 'getter' static methods for all fields. For the ```path``` and ```body``` fields, Derive4J will generate the following methods in the ```Requests``` class:
```java
public static String getPath(Request request){
return Requests.cases()
.GET(path -> path)
.DELETE(path -> path)
.PUT((path, body) -> path)
.POST((path, body) -> path)
.apply(request);
}
// return an Optional because the body is not present in the GET and DELETE cases:
static Optional getBody(Request request){
return Requests.cases()
.PUT((path, body) -> body)
.POST((path, body) -> body)
.otherwiseEmpty()
.apply(request);
}
```
(Actually the generated code is equivalent but more efficient)

Using the generated ```getBody``` methods, we can rewrite our ```getBodySize``` function into:
```java
static final Function getBodySize = request ->
Requests.getBody(request)
.map(String::length)
.orElse(0);
```

## Functional setters ('withers')
The most painful part of immutable data structures (like the one generated by Derive4J) is updating them. Scala case classes have ```copy``` methods for that. Derive4J generates similar modifier and setter methods in the ```Requests``` class:
```java
public static Function setPath(String newPath){
return Requests.cases()
.GET(path -> Requests.GET(newPath))
.DELETE(path -> Requests.DELETE(newPath))
.PUT((path, body) -> Requests.PUT(newPath, body))
.POST((path, body) -> Requests.POST(newPath, body)));
}
public static Function modPath(Function pathMapper){
return Requests.cases()
.GET(path -> Requests.GET(pathMapper.apply(path)))
.DELETE(path -> Requests.DELETE(pathMapper.apply(path)))
.PUT((path, body) -> Requests.PUT(pathMapper.apply(path), body))
.POST((path, body) -> Requests.POST(pathMapper.apply(path), body)));
}
public static Function setBody(String newBody){
return Requests.cases()
.GET(path -> Requests.GET(path)) // identity function for GET
.DELETE(path -> Requests.DELETE(path)) // and DELETE cases.
.PUT((path, body) -> Requests.PUT(path, newBody))
.POST((path, body) -> Requests.POST(path, newBody)));
}
...
```
By returning a function, modifiers and setters allow for a lightweight syntax when [updating deeply nested immutable data structures](#updating-deeply-nested-immutable-data-structure).

## First class laziness
Languages like Haskell provide laziness by default, which simplifies a lot of algorithms. In traditional Java you would have to declare a method argument as ```Supplier``` (and do memoization) to emulate laziness. With Derive4J that is no more necessary as it generates a lazy constructor that gives you transparent lazy evaluation for all consumers of your data type:
```java
// the requestExpression will be lazy-evaluated on the first call
// to the 'match' method of the returned Request instance:
public static Request lazy(Supplier requestExpression) {
...
}
```
Have a look at [List](https://github.com/derive4j/derive4j/blob/master/examples/src/main/java/org/derive4j/example/List.java) for how to implement a lazy cons list in Java using Derive4J (you may also want to see the associated [generated code](https://gist.github.com/jbgi/43c1bd0ab67e3f4b9634)).

## Flavours
In the example above, we have used the default ```JDK``` flavour. Also available are ```FJ``` ([Functional Java](https://github.com/functionaljava/)),
```Fugue``` ([Fugue](https://bitbucket.org/atlassian/fugue)),
```Javaslang```/```Vavr``` ([Vavr](http://www.vavr.io/)),
```HighJ``` ([HighJ](https://github.com/DanielGronau/highj)),
```Guava``` and
```Cyclops``` ([Cyclops-react](http://cyclops-react.io/)) flavours.
When using those alternative flavours, Derive4J will use eg. the specific ```Option``` implementations from those projects instead of the jdk ```Optional``` class.

## Optics (functional lenses)
If you are not familiar with optics, have a look at [Monocle](https://github.com/julien-truffaut/Monocle) (for Scala, but [Functional Java](https://github.com/functionaljava/functionaljava/) provides similar abstraction).

Using Derive4J generated code, defining optics is a breeze (you need to use the ```FJ``` flavour by specifying ```@Data(flavour = Flavour.FJ)```:
```java
/**
* Lenses: optics focused on a field present for all data type constructors
* (getter cannot 'failed'):
*/
public static final Lens _path = lens(
Requests::getPath,
Requests::setPath);
/**
* Optional: optics focused on a field that may not be present for all constructors
* (getter return an 'Option'):
*/
public static final Optional _body = optional(
Requests::getBody,
Requests::setBody);
/**
* Prism: optics focused on a specific constructor:
*/
public static final Prism _GET = prism(
// Getter function
Requests.cases()
.GET(fj.data.Option::some)
.otherwise(Option::none),
// Reverse Get function (aka constructor)
Requests::GET);

// If there is more than one field, we use a tuple as the prism target:
public static final Prism> _POST = prism(
// Getter:
Requests.cases()
.POST((path, body) -> p(path, body))
.otherwiseNone(),
// reverse get (construct a POST request given a P2):
p2 -> Requests.POST(p2._1(), p2._2()));
}
```
# Smart constructors
Sometimes you want to validate the constructors parameters before returning an instance of a type. When using the `Smart` visibity (`@Data(@Derive(withVisibility = Visibility.Smart))`), Derive4J will not expose "raw" constructors and setter as public, but will use package private visibility for those methods instead (getters will still be public).

Then you expose a public static factory method that will do the necessary validation of the arguments before returning an instance (typically wrapped in a `Option`/`Either`/`Validation`), and that public factory will be the only way to get an instance of that type.

See usage of this feature in [PersonName](https://github.com/derive4j/derive4j/blob/master/examples/src/main/java/org/derive4j/example/PersonName.java#L49).

# Static methods export

It is generally considered good style to keep static methods and instance methods separated, especially because overloads could cause ambiguities on usage as method references.

The Java file generated by derive4j contains only static methods, so it makes sense to use this class as main entry point for the `static` part of the data type API.

To this end, Derive4J support re-exporting of your own manually-written static methods as part of the generated class API. It can do so in two ways (that can be combined):

1. by specifying that the main generated class must extends a given class eg. `MyStaticMethods.class`, thus exposing all its static methods through inheritance.
2. by annotating your package-private static methods with `@ExportAsPublic`: Derive4J will generate public forwarding methods in the generated class, and, as bonus, it will memoize the result of nullary methods.
```java
@Data(@Derive(extend = MyStaticMethods.class))
public abstract class List {
// package-private static class with public static methods:
static abstract class MyStaticMethods {
public static
List singleton(A a) {
return Lists.cons(a, Lists.nil())
}
}
// Or use the annotation, either in the above MyStaticMethods class
// or directly in the data type class:
@ExportAsPublic
static
List singleton(A a) {
return Lists.cons(a, Lists.nil())
}
}

public static void main(final String[] args) {
// enjoy single access points for all static methods:
List a = Lists.singleton("a");
}
```

See usage of this feature in [PersonName](https://github.com/derive4j/derive4j/blob/master/examples/src/main/java/org/derive4j/example/PersonName.java#L49).

# Updating deeply nested immutable data structure
Let's say you want to model a CRM. Each client is a ```Person``` who can be contacted by email, by telephone or by postal mail. With Derive4J you could write the following:
```java
import org.derive4j.*;
import java.util.function.BiFunction;

@Data
public abstract class Address {
public abstract R match(@FieldNames({"number", "street"})
BiFunction Address);
}
```
```java
import org.derive4j.Data;

@Data
public abstract class Contact {
interface Cases {
R byEmail(String email);
R byPhone(String phoneNumber);
R byMail(Address postalAddress);
}
public abstract R match(Cases cases);
}
```
```java
import org.derive4j.*;
import java.util.function.BiFunction;

@Data
public abstract class Person {
public abstract R match(@FieldNames({"name", "contact"})
BiFunction Person);
}
```
But now we have a problem: All the clients have been imported from a legacy database with an off-by-one error for the street number! We must create a function that increments each ```Person```'s street number (if it exists) by one. And we have to do this without modifying the original data structure (because it is immutable).
With Derive4J, writing such a function is trivial:
```java
import java.util.Optional;
import java.util.function.Function;

import static org.derive4j.example.Addresss.Address;
import static org.derive4j.example.Addresss.getNumber;
import static org.derive4j.example.Addresss.modNumber;
import static org.derive4j.example.Contacts.getPostalAddress;
import static org.derive4j.example.Contacts.modPostalAddress;
import static org.derive4j.example.Persons.Person;
import static org.derive4j.example.Persons.getContact;
import static org.derive4j.example.Persons.modContact;

public static void main(String[] args) {

Person joe = Person("Joe", Contacts.byMail(Address(10, "Main St")));

Function incrementStreetNumber = modContact(
modPostalAddress(
modNumber(number -> number + 1)));

// correctedJoe is a copy of joe with the street number incremented:
Person correctedJoe = incrementStreetNumber.apply(joe);

Optional newStreetNumber = getPostalAddress(getContact(correctedJoe))
.map(postalAddress -> getNumber(postalAddress));

System.out.println(newStreetNumber); // print "Optional[11]" !!
}
```

# Popular use-case: domain specific languages
Algebraic data types are particulary well fitted for creating DSLs. A calculator for arithmetic expressions could be built like this:
```java
import java.util.function.Function;
import org.derive4j.Data;
import static org.derive4j.example.Expressions.*;

@Data
public abstract class Expression {

interface Cases {
R Const(Integer value);
R Add(Expression left, Expression right);
R Mult(Expression left, Expression right);
R Neg(Expression expr);
}

public abstract R match(Cases cases);

private static Function eval = Expressions
.cases()
.Const(value -> value)
.Add((left, right) -> eval(left) + eval(right))
.Mult((left, right) -> eval(left) * eval(right))
.Neg(expr -> -eval(expr));

public static Integer eval(Expression expression) {
return eval.apply(expression);
}

public static void main(String[] args) {
Expression expr = Add(Const(1), Mult(Const(2), Mult(Const(3), Const(3))));
System.out.println(eval(expr)); // (1+(2*(3*3))) = 19
}
}
```
# Catamorphisms
are generated for recursively defined datatypes. So that you can rewrite the above ```eval``` method into:
```java
public static Integer eval(Expression expression) {
Expressions
.cata(
value -> value,
(left, right) -> left + right,
(left, right) -> left * right,
expr -> -expr,
Supplier::get
)
.apply(expression)
}
```
The last parameter (`Supplier::get` above) specify how recursive calls are suspended.
Using `Supplier::get` means that the computation is not suspended: for deep structures it may blow the stack!

To be safe, use the `lazy`, (or `delay` or `suspend` or `defer`...) constructor of your result type, such as the lazy constructor generated by Derive4J.

If no such constructor is available then your safe option is to use a `Trampoline`, such as the one provided by FunctionalJava:
```java
public static Integer stackSafeEval(Expression expression) {
Expressions.cata(
value -> Trampoline.pure(value),
(left, right) -> left.zipWith(right, (l, r) -> l + r),
(left, right) -> left.zipWith(right, (l, r) -> l * r),
expr -> expr.map(i -> -i),
Trampoline::suspend
).f(expression).run();
}
```

# Extensible algebraic data types

Algebraic data types defined as fix-point (aka initial algebra) of an object algebras can enjoy [their extensibility properties](https://www.cs.utexas.edu/~wcook/Drafts/2012/ecoop2012.pdf).

## When the data type is not inductive the extensibility property comes directly from covariance

Eg. an event type for an inventory service:
```java
@Data
interface EventV1 {

interface Cases {
R newItem(Long ref, String itemName);
R itemRemoved(Long ref);
}

R match(Cases cases);
}
```

Then comes a new version of the service, with enriched events and new cases.
If the visitor for the new event type extend the old visitor interface then old events can be easily converted to new events, without change to the old classes:

```java
@Data
interface EventV2 {

interface Cases extends EventV1.Cases { // extends V1 with:

// new `initialStock` field in `newItem` event:
R newItem(Long ref, String itemName, int initialStock);
// default to 0 for old events:
@Override
default R newItem(Long ref, String itemName) {
return newItem(ref, itemName, 0);
}
// new event:
R itemRenamed(Long ref, String newName);
}

R match(Cases cases);

static EventV2 fromV1(EventV1 v1Event) {
// Events are (polymorphic) functions!
// And functions are contra-variant in type argument,
// thus we can use method reference to convert from V1 to V2:
return v1Event::match;
}
}
```

## Extensible inductive data types via hylomorphisms

Aka solving the expression problem via object-algebras used as visitor.
For this, we need to slightly change the visitor of the above `Expression` so that a type variable (`E`) is used instead of the self-reference:

```java
@Data
interface Exp {

interface ExpAlg {
R Lit(int lit);
R Add(E e1, E e2);
}

R accept(ExpAlg alg);
}
```
When data types are defined is such a way (as a fix-point of the algebra), Derive4J generate (by default) an instance of the visitor/algebra that can serve as factory (aka. anamorphism).
Using this factory as an argument to compatible catamorphism (thus creating a hylomorphism) we obtain a conversion function from one ADT to another.

Eg. we can create a new data type that add a multiplication case to the above data type, and still be able to maximally reuse the existing code without modification:

```java
@Data
interface ExpMul {

interface ExpMulAlg extends Exp.ExpAlg {
R Mul(E e1, E e2);
}

R accept(ExpMulAlg alg);

static Function fromExp() {
ExpMulAlg factory = ExpMuls.factory();
return Exps.cata(factory, ExpMuls::lazy);
}
}
```

To ensure smooth extensibility across compilation unit (or even during incremental compilation), it is best to **use the `-parameters` option of javac**.

# But what exactly is generated?
This is a very legitimate question. Here is the [```ExpMuls.java```](https://gist.github.com/jbgi/31b891f00566feb301f8100762ee8511#file-expmuls-java) file that is generated for the above ```@Data ExpMul``` type.

# Parametric polymorphism
... works as expected. For example, you can write the following:
```java
import java.util.function.Function;
import java.util.function.Supplier;
import org.derive4j.Data;

@Data
public abstract class Option
{

public abstract R cata(Supplier none, Function some);

public final Option map(final Function mapper) {
return Options.modSome(mapper).apply(this);
}
}
```
The generated modifier method ```modSome``` allows polymorphic update and is incidentaly the functor for our ```Option```!

# Generalized Algebraic Data Types

GADTs are also supported out of the box by Derive4J (within the limitations of the Java type system). Here is how you can translate the example from [Fun with phantom types](http://www.cs.ox.ac.uk/ralf.hinze/publications/With.pdf):
```java
import org.derive4j.hkt.TypeEq;

@Data
public abstract class Term {
interface Cases
{
R Zero(TypeEq id);
R Succ(Term pred, TypeEq id);
R Pred(Term succ, TypeEq id);
R IsZero(Term a, TypeEq id);
R If(Term cond, Term
then, Term otherwise);
}

public abstract X match(Cases cases);

public static T eval(final Term term) {

return Terms.caseOf(term).
Zero(id -> id.coerce(0)).
Succ((t, id) -> id.coerce(eval(t) + 1)).
Pred((t, id) -> id.coerce(eval(t) - 1)).
IsZero((t, id) -> id.coerce(eval(t) == 0)).
If((cond, then, otherwise) -> eval(cond)
? eval(then)
: eval(otherwise));
}

public static void main(final String[] args) {

Term one = Succ(Zero());
out.println(eval(one)); // "1"
out.println(eval(IsZero(one))); // "false"
// IsZero(IsZero(one)); // does not compile:
// "The method IsZero(Term) in the type Term is not
// applicable for the arguments (Term)"
out.println(eval(If(IsZero(one), Zero(), one))); // "1"
Term True = IsZero(Zero());
Term False = IsZero(one);
out.println(eval(If(True, True, False))); // "true"
// out.println(prettyPrint(If(True, True, False), 0)); // "if IsZero(0)
// then IsZero(0)
// else IsZero(Succ(0))"
}
}

```
For GADT you will need to add a dependency on [derive4j/hkt](https://github.com/derive4j/hkt) which provides `TypeEq
`: a witness of the equality of two types, `A` and `B`.

# DRY annotation configuration
By default the `@Data` annotation triggers the generation of [everything which is available](/annotation/src/main/java/org/derive4j/Make.java#L22), in a file whose name is the English plural of the annotated class. But you may want to restrict the scope of what is generated, or change the name of the file, and you usually want all you ADTs to use the same flavour. You may even dislike the name of the annotation because it clashes with another framework...

For example, let's say that you want to always use the `FJ` flavour (FunctionalJava), make the generated code package private in a class suffixed by `Impl` and only generate the pattern matching syntax and the constructors. Then all you have to do is to create the following annotation:
```java
@Data(flavour = Flavour.FJ, value = @Derive(
inClass = "{ClassName}Impl",
withVisibility = Visibility.Package,
make = { Make.constructors, Make.caseOfMatching }
))
public @interface myADT {}
```
And you annotate your classes with `@myADT` instead of `@Data`, saving on that configuration every time.

But now for some of your ADTs you may want to also generate getters and functional setters. In order to not lose the benefits of your `@myADT`, derive4j allows you to do this:
```java
@myADT
@Derive(make = { Make.getters, Make.modifiers }) // add-up to the @myADT configuration
public abstract class Adt {...}

```

# Use it in your project
Derive4J should be declared as a compile-time only dependency (not needed at runtime). So while derive4j is (L)GPL-licensed, the generated code is not linked to derive4j, and thus __derive4j can be used in any project (proprietary or not)__.
## Maven:
```xml

org.derive4j
derive4j
1.1.1
true

```
[search.maven]: http://search.maven.org/#search|ga|1|org.derive4j.derive4j

## Gradle
```
compile(group: 'org.derive4j', name: 'derive4j', version: '1.1.1', ext: 'jar')
```
or better using the [gradle-apt-plugin](https://github.com/tbroyer/gradle-apt-plugin):
```
compileOnly "org.derive4j:derive4j-annotation:1.1.1"
apt "org.derive4j:derive4j:1.1.1"
```
## Contributing

Bug reports and feature requests are welcome, as well as contributions to improve documentation.

Right now the codebase is not ready for external contribution (many blocks of code are more complicated than they should be). So you might be better off waiting for the resolution of [#2](https://github.com/derive4j/derive4j/issues/2) before trying to dig into the codebase.

## Contact
[email protected], [@jb9i](https://twitter.com/jb9i) or use the project GitHub issues.

## Further reading

- [Encoding FP in Java](https://gracious-hypatia-aac58b.netlify.com/) (and links)
- http://eng.wealthfront.com/2015/02/pattern-matching-in-java-with-visitor.html
- https://en.wikipedia.org/wiki/Algebraic_data_type
- https://en.wikipedia.org/wiki/Tagged_union
- http://blog.higher-order.com/blog/2009/08/21/structural-pattern-matching-in-java/
- http://tomasp.net/blog/types-and-math.aspx/
- http://fsharpforfunandprofit.com/posts/type-size-and-design/
- https://codewords.recurse.com/issues/three/algebra-and-calculus-of-algebraic-data-types
- http://chris-taylor.github.io/blog/2013/02/10/the-algebra-of-algebraic-data-types/

## Thanks

This project has a special dedication to Tony Morris' blog post [Debut with a catamorphism](http://blog.tmorris.net/posts/debut-with-a-catamorphism/index.html).
I'm also very thankful to [@sviperll](https://github.com/sviperll) and his [adt4j](https://github.com/sviperll/adt4j/) project which was the initial inspiration for Derive4J.