Read full documentation at http://immutables.org
// Define abstract value type using interface, abstract class or annotation
@Value.Immutable
public interface ValueObject extend WithValueObject {
// extend not-yet-generated WithValueObject to inherit `with*` method signatures
String getName();
List<Integer> getCounts();
Optional<String> getDescription();
class Builder extends ImmutableValueObject.Builder {}
// ImmutableValueObject.Builder will be generated and
// our builder will inherit and reexport methods as it's own
}
// Use generated immutable implementation and builder
ValueObject v =
new ValueObject.Builder()
.name("Nameless")
.description("present")
.addCounts(1)
.addCounts(2)
.build();
v = v.withName("Doe");
Copyright 2013-2018 Immutables Authors and Contributors
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.
- Bugfix and refinements release! Thank you issue reports and PRs!
- Notable stuff
- Propagate checked exceptions in
throws
for lazy attributes (only for@Value.Lazy
)
- Propagate checked exceptions in
- Issues 2.7.4
- Important fix for Modifiables/Immutables/from (aka mergeFrom) methods broken in 2.7.2
- Issues #863 #864
- Many fixes and corrections! Thank you issue reports and PRs!
- Issues 2.7.2
- Notable stuff
- Experimental support for Codecs and Jackson (along with Gson) for mapping to MongoDB repositories (#850, #817 by @asereda-gs)
Style.optionalAcceptNullable=true
now also generates alternative constructor accepting nullable input forjava.util.Optional
attributes (#843 by @ThLeu)org.immutables.value.Generated
now covers generated nested classes (#854 by @before)
- Thank you issue reports and PRs! Not many features here, but minor version increment was needed
- Notable stuff
- Added
org.immutables:value-annotations
annotation only jar. Previously we had equivalent artifactorg.immutables:value:annotations
(classifierannotations
). Apparently some tools have trouble with properly addressing jars with classifiers and attached sources. Both artifacts are released. org.immutables.value.Generated
annotation (which auto added to generated classes / builders) is class-retention annotation now. Some tools (like osgi related) will not automatically add such annotation as runtime dependency.Automatic-Module-Name
now have no dashes fororg.immutables.value.annotations
(annotation only) andorg.immutables.value.processor
(unshaded processor). Most used artifact/moduleorg.immutables.value
is obviously unchanged.- Can suppress a bit finer categories of warnings
@Suppression("immutables:subtype")
, each warning message now contain such token in parentheses. - Subtyping value type with another value type directly is now a warning, not an error. It's still better avoid it.
- Added
- Issues 2.7.1
- Hotfixes for 2.6. Thank you for reported issues and PRs!
- Issues 2.6.1
- Tons of fixes and small improvements. Thank you for reported issues and PRs!
- Issues 2.6.0
- Notables features
- Fixed long standing issue with compile error when using inverse generation style and using attributes with not-yet-generated generic types (the issue with
<any>
) - Experimental annotation injection: allows injecting annotation on fields, accessors, initializer, immutable and builder types etc. Injection directives are defined as custom annotations that are meta-annotated with
@InjectAnnotation
in neworg.immutables:annotate
module. Allow some non-trivial annotation code construction, see javadoc of@InjectAnnotation
for details. canBuild
method can be generated on builders which checks if all mandatory attributes are set. It's not generated by default, but once its name is specified in style naming template it will be generated on builder (Style(canBuild="canBuild")
)Style.throwForNullPointer
can be used to customize exception thrown on routine null checks.Style.allowedClasspathAnnotations
whitelist for allowed annotations which automaticllay used to decorate generated classed when available via classpath lookup. Includes some ofjavax.annotation.*
, ErrorProne, FindBugs etc.Style.weakInterning
style can be used to enable weak interning when enabled via@Value.Immutable(intern = true)
- Introduced own class and runtime retained annotation
org.immutables.value.Generated
to be used for bytecode-inspecting and reflection-based tools to include/exclude generated files. @Gson.Other JsonObject
can collect other/unknown fields in objects mapped with Gson TypeAdapters- Avoid using
Lists.newArrayList()
in favor of plainnew ArrayList<>()
when Guava is present
- Fixed long standing issue with compile error when using inverse generation style and using attributes with not-yet-generated generic types (the issue with
- Number of bugfixes including Jackson and Gson fixes. Thank you for the PRs!
- Notable features
@Value.Redacted
annotation withStyle.redactedMask
customization setting.
- Issues 2.5.0
- Enhancement and bugfix release. Thanks to issue reporters and contributors! PRs were great!
- Notable features
- Fancier hash code generation.
- if
hashCode
is precomputed (prehash=true
), it is used inequals
to short circuit unequal object comparison. @NaturalOrder/ReverseOrder
now works withSortedMultiset
allMandatoryParameters = true
style to automatically turn all mandatory attributes into parametersbuiltinContainerAttributes = false
to disable recognition and special handling of built-in collection type. Custom encodings would still work.@Builder.AccessibleFields
to generate builder with protected fields. Override/access using nested Builder class extending auto-generated one.- Gson/Jackson refinements and fixes
- new
META-INF/extensions/org.immutables.inhibit-classpath
file to specify a blacklist of classnames(or prefixes) to hide them from lookup: useful if you want to disable features or integrations that are otherwise auto-enabled when certain classes are found in classpath. (But please, do not package it in libs you would distribute to 3rd parties)
- Issues 2.4.0
- Issues 2.4.1
- Issues 2.4.2-2.4.3
- Issues 2.4.4
- Enhancement and bugfix release. Thanks to issue reporters!
@AllowNulls and @SkipNulls
BYOA annotations supported for Collections and Maps when@Style(jdkOnly = true)
@JsonDeserialize(builder = ImmutableVal.Builder.class)
is now supported when using builder with constructor@Value.Style(builder = "new")
orclass Builder extends ImmutableVal.Builder
- If
Style.forceJacksonIgnoreFields = true
, generate@JsonIgnore
on fields to avoid potential conflicts with attributes annotated with@JsonProperty
- Disable automatic Jackson integration via
@Style(jacksonIntegration = false)
for fully custom mappings using@JsonSerialize/@JsonDeserialize
annotations - Staged/Telescopic builder is generated when
@Style(stagedBuilder = true)
- Issues
- Really minor change and bugfix release. Thanks to issue reporters!
- Issues
- Minor change and bugfix release. Thanks to issue reporters!
- Things to be aware of
- Generated naming changed when inferred attribute name clashes with keyword. Previously for
isDefault
accessor, corresponding initializersetIsDefault
would be generated for"set*"
pattern. Now itsetDefault
will be the name of generated method. JSON namedefault
would be also derived. org.immutables:trees
module is renamed from the oldcases
module- While still experimental, encodings are taking more shape now.
@Encoding.Init
on value replaced with separate@Encoding.Of
annotation to better express purpose, for builders@Encoding.Init
serve the same role as before.
- Generated naming changed when inferred attribute name clashes with keyword. Previously for
- Issues
- Bugfixes! Thanks to issue reporters!
- Issues
- Bugfixes! Thanks to issue reporters!
- Early preview of "encodings" functionality to support custom collections and other custom types/containers!
- Issues
- Hotfix release. Thanks to issue reporters!
- Issues
- Thanks to issue reporters and contributors!
- Issues
- Thanks to issue reporters!
- Issues
- Thanks to issue reporters!
- Issues
- Thanks to contributors and issue reporters!
- Bugfix and minor enhancement release
- Numerous fixes for generics and interactions with other features
- SkipNulls and Nullable elements in maps and collections if you really need them (#349)
With*
interface generation to finely hide implementation classes while still havingwith*
methods in API- Straw man support for custom collections (see /META-INF/extensions/org.immutables.collect)
- Issues
- Thanks to contributors and issue reporters!
- Bugfix release
- Running in Eclipse Neon RC due to APT classloading changes
- Issues
- Thanks to contributors and issue reporters!
- Bugfixes and functionality refinements
- Can disable generation of META-INF/services for Gson adapters
Gson.TypeAdapters.metainfServices = false
- Gson Adapters may be configured to skip nulls in favor of default values.
Gson.TypeAdapters.nullAsDefault = true
- Numerous bug fixes
- Can disable generation of META-INF/services for Gson adapters
- Issues
- Thanks to contributors and issue reporters!
- Improvements
- Generic parameters support for Immutable objects! Modifiables are supported (likely).
- Jackson/Gson Adapters support for generics
- Collections now can be nullable and/or also
@Value.Default
. Default attributes can be nullable, yet allowing arbitrary default values. - Depluralization dictionaries can be specified on multiple levels (type, package, meta-annotation). All applicable dictionary entries will be merged.
- Backward compatibility should be preserved.
- Issues
- Minor Hotfix, Thank you!
- Issues
- Minor Bugfixes, Thank you!
- Issues
- Thanks to contributors and issue reporters, important bugfixes were made!
- Issues
- Minor enhancements
- Javaslang Option support
- More compact toString, omitting non-present Optionals and nulls
- Cancel-out individual parameters when
allParameters = true
- Bugfix and minor improvement release.
- Output package pattern can be configured using style
- Ad-Hoc normalization using Value.Check
Style(deepImmutablesDetection = true)
behavior refined- Refined
JsonSerialize
enclosing top-level type annotation handling
- Thanks to contributors and issue reporters!
- Issues
- Bugfix and minor changes release.
- Findbugs'
SuppressFBWarnings
placed on immutable implementation if found in the classpath - Primitive wrapper types and strings have an
equals
comparison now inwith*
methods in short-circuiting check toreturn this
. - Fixed some Eclipse specific compilation bugs.
- Findbugs'
- Thanks to contributors and issue reporters!
- Issues
- Bugfix and Minor improvement release:
- Depluralization for
add*
andput*
methods enabled withStyle(depluralize, depluralizeDictionary)
- Fixed regression while using
java.util.Optional*
withBuilder.Factory
caused by auto-unboxing to nullable fields in 2.1.9 - Improved handling for some internal problems in the processor
- Depluralization for
- Thanks to contributors and issue reporters!
- Issues
- Bugfix release:
- License headers, added missing, plus some cleanup
- Fixed override of final method in some cases
- Javadoc linting to fix javadocs in generated code
- Thanks to contributors and issue reporters!
- Issues
- Bugfix and Minor improvement release:
- Automatic unboxing and boxing of java.util.Optional to nullable A fields
- Thanks to contributors and issue reporters!
- Issues
- Bugfix and Minor improvement release:
- New 'func' module: Functions and predicate generator (for Guava, pre java 8)
@Builder.Parameter
and@Builder.Switch
are working on value attributes now- New 'android-stub' module, may be useful to compile android libraries using Immutables for API level < 19
- Thanks to contributors and issue reporters!
- Issues
- Bugfix and Minor improvement release.
- Thanks to contributors and issue reporters!
- Issues
- Public constructors style
- Bugfix and Minor improvement release.
- Thanks to contributors and issue reporters!
- Issues
- Gson 2.5 support for SerializedName annotation including alternate names
- Bugfix and Minor improvement release.
- Many thanks to all user and contributors for issue reports, PRs and suggestions!
- Notable JSON fixes. Courtesy of @ldriscoll
- Generated Javadocs corrections and proofreading. Courtesy of @io7m and @trask
- Atlassian Fugue 2.x and 3.x
Option
support. Courtesy of @mzeijen
- Issues
- Added
Value.Modifiable
annotation to create modifiable companion classes, which may serve as uber-builder or instead ofbuildPartial
in other builder toolkits. - Added number of minor styles and feature flags and refinements of existing functionality
- Numerous bugfixes
- Issues
- Bugfix and minor enhancement release Issues
- Bugfix and minor enhancement release Issues
- Bugfix release Issues
- Bugfixes and minor improvements Issues
- Bugfixes and minor improvements Issues
- Added new experimental serialization module with advanced structural binary serialization, which is based on the standard java binary serialization that allows for object evolution to some degree.
- Bugfixes along with minor refinements of annotation handling. Issues
Bugfix release along with other 2.0.X. Issues
Many thanks to all contributors who helped to make it happen. Thanks to the community for making feature requests, bug reports, questions and suggestions.
Note versions 1.1.x are still supported, there's no rush to switch to 2.0 if you are not ready.
- Thanks to @augustotravillio for implementing JDK-only code generation. Useful on Android or when Guava is not available.
- Thanks to @ivysharev for a lot more precise imports post-processor.
- Support for java 8, including new
Optional*
classes, default methods. But type annotation support is rudimentary (works only in some cases). Java 7 is still required for compilation Multiset
,Multimap
,SetMultimap
,ListMultimap
are now supported.- Full-featured Gson support with generated
TypeAdapter
s which use no reflection during serialization/deserialization. - Builder now can be generated as "strict" (Style#strictBuilder). Strict builders prevents initialization errors: addition only collection initializer and regular initializers could be called only once.
- Now, there's no required dependencies, plain JDK will suffice. Guava still has first class support.
- Processor now enjoy improved repackaging (using forked and patched
maven-shade-plugin
) - Added
@Builder.Switch
annotation - Numerous API and behavior refinements, resulting in lot less WTF.
- Main annotation and processor artifact changed to be
org.immutables:value
. There's no confusingvalue-standalone
or whatsoever. common
artifact was removed, all compile and runtime dependencies have been modularized. While annotation processor itself is pretty monolithic, now compile and optional runtime dependencies are externalized to dedicated artifacts. Some notable modules:gson
Gson support modulemongo
MongoDB support modulebuilder
Module with annotations for generating builder from static factory methodsordinal
Module to generate more exotic enum-like values and efficiently handle them, etc
- JSON infrastructure underwent overhaul. See guide at http://immutables.org/json.html
- JAX-RS support switched to Gson, for Jackson integration there's no need to integrate anything, its own provider will fully work.
- MongoDB repository generation was refined and adjusted following JSON changes. See guide at http://immutables.org/mongo.html
- Temporarily removed JDBI integration. It may be resurrected later.
- Direct inheritance of
@Value.Immutable
from another@Value.Immutable
is discouraged. - Limited (and constrained to same level) inheritance of
@Value.Parameter
attributes. - Builder now has method to set/reset collection content (in non-strict mode)
- Package style now also applies to all classes in sub-packages unless overridden
- Constructor parameters for collections now accept more liberal input.
List<T>
parameter acceptsIterable<? extends T>
etc. - Removed sample style annotation like
@BeanStyle.Accessors
in favor of documentation and samples @Value.Nested
was renamed to@Value.Enclosing
@Value.Immutable#visibility
was moved to style@Value.Style#visibility
@Value.Immutable.Include
was moved to@Value.Include
- Moved
@Value.Builder
tobuilder
module where it is called@Builder.Factory
. Added@Builder.Parameter
and@Builder.Switch
to fine-tune generation of builders for factory methods.
- #53 Implemented
SortedSet
/NavigableSet
/SortedMap
/NavigableMap
attributes specifying@Value.NaturalOrder
or@Value.ReverseOrder
annotation. Idea contributed by Facebook Buck team. Thanks! - #63
@Value.Builder
: implemented standalone builder generations for static factory methods. This makes it possible to create builders for arbitrary factory methods, including google/AutoValue create methods! - #38
@Value.Immutable.Include
: Ability to include other classes even from different packages and libraries as abstract value types. Think of generating immutable implementation of annotations from different library! - #33
@Value.Style
: insanely flexible style customization infrastructure now allows to tailor generated immutable types and builders to wide range of style and preferences!@BeanStyle.Accessors
is example of style annotations - allows accessors to be detected from with 'get' and 'is' prefixes, so prefix will be stripped on builder and in toString.
- #35
@Nullable
attributes. Support any annotation namedNullable
. Thanks to John Wood for this and other valuable feature and bug reports! - #44 Ability to run generated classes on JDK6 (including runtime support library
common
). JDK7 is still required to run annotation processor. Credits to Trask Stalnaker for the contribution! - Improved code generation: more clean code, more useful javadocs, dozens of fixes to edge cases, more correctness for customized value types.
- #64
org.immutables.json-runtime
minimal JSON runtime jar, extracted fromcommon
with only necessary transitive Jackson dependencies. - #54 Support for including Jackson marshaled POJOs as attributes of
@Json.Marshaled
immutable objects. Together with@Jackson.Mapped
this provides round-tripping from Immutables' marshalers to Jackson and back.
- Dozens of fixes, including
- #61 Partially fixed
@Value.Default
methods on Java 8 implemented with interfacedefault
methods. Known issue is with more complex interface inheritance #67 - #48 JDBI marshaling fixes
- #50 Support for older versions of Guava, which did not have
MoreObjects
for example, detected from classpath. Checked with Guava v12, v16 - Fixed resolution of accesors inherited from couple of interfaces. (Still do not take into account most specific covariant override)
- #61 Partially fixed
- Deprecations
- Deprecated
@Value.Immutable(nonpublic)
in favor of@Value.Immutable(visibility)
, nonpublic not working now, but it should not break - Deprecated
@Value.Immutable(withers)
in favor of@Value.Immutable(copy)
- Deprecated
@Value.Getters
in favor of using@Value.Style
. May be undeprecated if found really useful - Removed underdeveloped annotations and processors to be reintroduced later (Transformer, Visitor, Parboiled)
- Deprecated
- Incompatibilites
- Upgrade to Jackson 2.4.4 for Jackson
ObjectMapper
cross-marshaling to work - Possible incompatibity:
@Json.Marshaled
now is required on each nested@Value.Immutable
, marshaled annotation on@Value.Nested
will not have effect - #59
@Value.Default
on collection attributes now issues warning, that makes collection attribute generated as plain regular attributes without any special collection support in builder
- Upgrade to Jackson 2.4.4 for Jackson
- Improper unchecked suppressions in generated files #36
- fixed/refined underwriting of methods: hashCode, equals, toString #37
- Fixed duplication of instanceof checks in Transfromers
- Fixed implementation of nDeprecationsonpublic=true (package private) immutable classes
- Internal: using released 1.0 ‘value-standalone’ for self-compiling, rather than 'retrovalue' system/jar
- Internal: made marshaling binding problems IOException instead of runtime
Release with all of what was developed, including reengineering of template engine, project/module restructuring and annotation API changes
- Immutable generation annotation now nested below umbrella annotation
@org.immutables.value.Value
which provided grouping and namespacing for the nested annotations.@GenerateImmutable
is now@Value.Immutable
@GenerateConstructorParameter
is now@Value.Parameter
- ... and so on, see website and API documentation for the details
- See other umbrella annotations in
org.immutables.value.*
package:@Json
,@Mongo
,@Jackson
- Main standalone artifact for the annotation processor is now
org.immutables:value-standalone:1.0
. There's is quick start module with transitive dependencies for integrations — to not pick dependencies one by one —org.immutables:quickstart:1.0
- Most notable generated API changes
- Added
ImmutableValue.copyOf
methods - Added array attributes
- Added
Builder.addAttribute(T...)
overload for collection attributes - Removed
ImmutableValue.Builder.copy
methods
- Added