-
In many cases there is necessary to exclude some fields of class from comparing in equals and from generation of hashCode.
So it would be good to have annotation to mark methods to be excluded from A…
-
Assuming I have an interface
``` java
public interface Interface {
String value();
}
```
and an implementing model
``` java
@AutoValue public abstract class Model implements Interface {}
```
Th…
-
Sometimes you need to control which fields are included in the toString method to avoid information leaking to logs. Lombok does this via the @ToString(includeFieldNames={}) annotation.
-
While trying to run the tests almost every test fails. (Except of `acceptsParcelableProperties` and `throwsForNonParcelableProperty`).
Do you have any idea what is going on here?
``` java
java.lang.…
-
When using auto-value-moshi with Kotlin, it seems like kapt is not generating any sources related to Moshi. The basic AutoValue classes are being generated, just nothing related to Moshi.
Is this a…
Mauin updated
7 years ago
-
Given the class `@AutoValue abstract class Foo`, compilation fails when I include auto-value-moshi (`apt 'com.ryanharter.auto.value:auto-value-moshi:0.2-SNAPSHOT'`).
-
Hello dear lib developer,
thanks for this awesome PaperParcel library. I read your Blogpost with the history of this lib in kotlin and why it's interesting to also have it for java based android a…
-
/CC @dborowitz @hanwen
Not sure, if it's auto-value or Bazel issue. Reporting it here, because it works as expected with Buck, but failing with Bazel:
https://gerrit-ci.gerritforge.com/view/Ger…
-
Recently the functionality of collections was changed to default to empty collections, instead of null (#71), but this technically breaks the contract with AutoValue, since the property is not annotat…
-
Main reason to use Jackson was the built-in support of builders in Jackson, now we can use Gson which is much smaller (~4x) library with pretty much the same performance.