autotransient

A transient annotation for AutoValue extensions.

License

License

Categories

Categories

Auto Application Layer Libs Code Generators
GroupId

GroupId

io.sweers.autotransient
ArtifactId

ArtifactId

autotransient
Last Version

Last Version

1.0.0
Release Date

Release Date

Type

Type

jar
Description

Description

autotransient
A transient annotation for AutoValue extensions.
Project URL

Project URL

https://github.com/ZacSweers/AutoTransient/
Source Code Management

Source Code Management

https://github.com/ZacSweers/AutoTransient/

Download autotransient

How to add to project

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

Dependencies

There are no dependencies for this project. It is a standalone project that does not depend on any other jars.

Project Modules

There are no modules declared in this project.

AutoTransient

Build Status

A simple @AutoTransient annotation for shared use in auto-value-gson, auto-value-moshi, and auto-value-parcel. This library should be considered solely a shared common library for those three and only consumed transitively.

Usage:

@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

Maven Central

compileOnly 'io.sweers.autotransient:autotransient:x.y.z'

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

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 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.0.0