Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gabrielittner/auto-value-with
AutoValue extension to implement "with-er" methods for AutoValue objects
https://github.com/gabrielittner/auto-value-with
autovalue autovalue-extension
Last synced: 3 months ago
JSON representation
AutoValue extension to implement "with-er" methods for AutoValue objects
- Host: GitHub
- URL: https://github.com/gabrielittner/auto-value-with
- Owner: gabrielittner
- License: apache-2.0
- Archived: true
- Created: 2016-01-14T16:41:01.000Z (almost 9 years ago)
- Default Branch: main
- Last Pushed: 2021-07-26T04:20:09.000Z (over 3 years ago)
- Last Synced: 2024-04-20T09:32:16.877Z (7 months ago)
- Topics: autovalue, autovalue-extension
- Language: Java
- Size: 341 KB
- Stars: 138
- Watchers: 4
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# AutoValue: With Extension
An extension for Google's [AutoValue][auto] 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.
```java
@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:
```groovy
annotationProcessor 'com.gabrielittner.auto.value:auto-value-with:1.1.1'
```or Maven:
```xmlcom.gabrielittner.auto.value
auto-value-with
1.1.1
provided```
Snapshots of the development version are available in [Sonatype's `snapshots` repository][snap].
## 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 athttp://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.
```[auto]: https://github.com/google/auto
[snap]: https://oss.sonatype.org/content/repositories/snapshots/