AutoValue: With Extension

AutoValue extension to implement "with-er" methods for AutoValue objects

License

License

Categories

Categories

Auto Application Layer Libs Code Generators
GroupId

GroupId

com.gabrielittner.auto.value
ArtifactId

ArtifactId

auto-value-with
Last Version

Last Version

1.1.1
Release Date

Release Date

Type

Type

jar
Description

Description

AutoValue: With Extension
AutoValue extension to implement "with-er" methods for AutoValue objects
Project URL

Project URL

https://github.com/gabrielittner/auto-value-with/
Source Code Management

Source Code Management

https://github.com/gabrielittner/auto-value-with/

Download auto-value-with

How to add to project

<!-- https://jarcasting.com/artifacts/com.gabrielittner.auto.value/auto-value-with/ -->
<dependency>
    <groupId>com.gabrielittner.auto.value</groupId>
    <artifactId>auto-value-with</artifactId>
    <version>1.1.1</version>
</dependency>
// https://jarcasting.com/artifacts/com.gabrielittner.auto.value/auto-value-with/
implementation 'com.gabrielittner.auto.value:auto-value-with:1.1.1'
// https://jarcasting.com/artifacts/com.gabrielittner.auto.value/auto-value-with/
implementation ("com.gabrielittner.auto.value:auto-value-with:1.1.1")
'com.gabrielittner.auto.value:auto-value-with:jar:1.1.1'
<dependency org="com.gabrielittner.auto.value" name="auto-value-with" rev="1.1.1">
  <artifact name="auto-value-with" type="jar" />
</dependency>
@Grapes(
@Grab(group='com.gabrielittner.auto.value', module='auto-value-with', version='1.1.1')
)
libraryDependencies += "com.gabrielittner.auto.value" % "auto-value-with" % "1.1.1"
[com.gabrielittner.auto.value/auto-value-with "1.1.1"]

Dependencies

compile (1)

Group / Artifact Type Version
com.google.auto.value : auto-value jar 1.7.4

runtime (4)

Group / Artifact Type Version
com.squareup : javapoet jar 1.13.0
com.google.guava : guava jar 29.0-jre
com.google.auto : auto-common jar 0.10
com.gabrielittner.auto.value : auto-value-extension-util jar 0.4.0

Project Modules

There are no modules declared in this project.

AutoValue: With Extension

An extension for Google's AutoValue that implements "with-er" methods for AutoValue objects.

Note: This is an early version that requires the extension support currently in AutoValue 1.2-SNAPSHOT.

Usage

Include auto-value-with in your project and "with-er" methods to your auto-value objects.

@AutoValue public abstract class User {
  abstract String id();
  abstract String name();
  abstract String email();

  abstract User withEmail(String email);

  // you can also use multiple
  abstract User withNameAndEmail(String name, String email);
}

The extension will generate an implementation of withEmail(String) that returns a new instance of User with the given email.

By convention "with-er" methods have to use with as prefix and use the exact property name for both method name and parameter name.

Download

Add a Gradle dependency:

annotationProcessor 'com.gabrielittner.auto.value:auto-value-with:1.1.1'

or Maven:

<dependency>
  <groupId>com.gabrielittner.auto.value</groupId>
  <artifactId>auto-value-with</artifactId>
  <version>1.1.1</version>
  <scope>provided</scope>
</dependency>

Snapshots of the development version are available in Sonatype's snapshots repository.

License

Copyright 2016 Gabriel Ittner.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

Versions

Version
1.1.1
1.1.0
1.1.0-rc1
1.0.0
1.0.0-rc1
0.1.5
0.1.4
0.1.3
0.1.2
0.1.1
0.1.0