https://github.com/zacsweers/autotransient
A transient annotation for AutoValue extensions.
https://github.com/zacsweers/autotransient
autovalue autovalue-extensions autovaluegson autovaluemoshi autovalueparcel
Last synced: 3 months ago
JSON representation
A transient annotation for AutoValue extensions.
- Host: GitHub
- URL: https://github.com/zacsweers/autotransient
- Owner: ZacSweers
- License: apache-2.0
- Created: 2018-11-18T01:02:02.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-01-31T01:48:49.000Z (over 6 years ago)
- Last Synced: 2025-02-09T00:45:36.866Z (8 months ago)
- Topics: autovalue, autovalue-extensions, autovaluegson, autovaluemoshi, autovalueparcel
- Language: Java
- Size: 74.2 KB
- Stars: 7
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.txt
Awesome Lists containing this project
README
AutoTransient
=============[](https://travis-ci.org/ZacSweers/AutoTransient)
A simple `@AutoTransient` annotation for shared use in [auto-value-gson][avg], [auto-value-moshi][avm], and [auto-value-parcel][avp]. This library should be considered solely a shared common library for those three and only consumed transitively.
Usage:
```java
@AutoValue
public abstract class Taco {@AutoTransient
abstract Integer weight();}
```Usage notes:
* While left to the implementations of the respective plugins, this should only be applied to optional properties. Applying to a primitive or required property could result in undefined behavior.
* For serialization: This should be expected for both read and write behavior. There is no way to configure only one or the other via this annotation. Instead, consumers should write a delegating adapter for serialization that only calls through to the delegate for the desired serialization types.Download
--------[](https://mvnrepository.com/artifact/io.sweers.autotransient/auto-value-transient)
```gradle
compileOnly 'io.sweers.autotransient:autotransient:x.y.z'
```Snapshots of the development version are available in [Sonatype's snapshots repository][snapshots].
License
-------Copyright (C) 2018 Zac Sweers
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.[snapshots]: https://oss.sonatype.org/content/repositories/snapshots/
[avg]: https://github.com/rharter/auto-value-gson
[avm]: https://github.com/rharter/auto-value-moshi
[avp]: https://github.com/rharter/auto-value-parcel