From 8b7a7cbc813653a3248d6cf3a7779e220957bc85 Mon Sep 17 00:00:00 2001 From: Reinier Zwitserloot Date: Mon, 8 May 2017 21:28:02 +0200 Subject: The great rename: the old ‘website’ is now ‘website-old’, and ‘website2’ is now ‘website’. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- website2/templates/features/Builder.html | 163 --------------------- website2/templates/features/BuilderSingular.html | 5 - website2/templates/features/Cleanup.html | 35 ----- website2/templates/features/Data.html | 41 ------ website2/templates/features/EqualsAndHashCode.html | 56 ------- website2/templates/features/GetterLazy.html | 31 ---- website2/templates/features/GetterSetter.html | 70 --------- website2/templates/features/NonNull.html | 45 ------ website2/templates/features/SneakyThrows.html | 44 ------ website2/templates/features/Synchronized.html | 34 ----- website2/templates/features/ToString.html | 54 ------- website2/templates/features/Value.html | 50 ------- website2/templates/features/_features.html | 79 ---------- website2/templates/features/configuration.html | 106 -------------- website2/templates/features/constructor.html | 57 ------- website2/templates/features/delombok.html | 61 -------- .../templates/features/experimental/Accessors.html | 75 ---------- .../templates/features/experimental/Delegate.html | 59 -------- .../features/experimental/ExtensionMethod.html | 67 --------- .../features/experimental/FieldDefaults.html | 56 ------- .../templates/features/experimental/Helper.html | 52 ------- .../features/experimental/UtilityClass.html | 44 ------ .../templates/features/experimental/Wither.html | 66 --------- .../templates/features/experimental/index.html | 85 ----------- website2/templates/features/experimental/onX.html | 62 -------- website2/templates/features/experimental/var.html | 37 ----- website2/templates/features/index.html | 87 ----------- website2/templates/features/log.html | 106 -------------- website2/templates/features/val.html | 36 ----- 29 files changed, 1763 deletions(-) delete mode 100644 website2/templates/features/Builder.html delete mode 100644 website2/templates/features/BuilderSingular.html delete mode 100644 website2/templates/features/Cleanup.html delete mode 100644 website2/templates/features/Data.html delete mode 100644 website2/templates/features/EqualsAndHashCode.html delete mode 100644 website2/templates/features/GetterLazy.html delete mode 100644 website2/templates/features/GetterSetter.html delete mode 100644 website2/templates/features/NonNull.html delete mode 100644 website2/templates/features/SneakyThrows.html delete mode 100644 website2/templates/features/Synchronized.html delete mode 100644 website2/templates/features/ToString.html delete mode 100644 website2/templates/features/Value.html delete mode 100644 website2/templates/features/_features.html delete mode 100644 website2/templates/features/configuration.html delete mode 100644 website2/templates/features/constructor.html delete mode 100644 website2/templates/features/delombok.html delete mode 100644 website2/templates/features/experimental/Accessors.html delete mode 100644 website2/templates/features/experimental/Delegate.html delete mode 100644 website2/templates/features/experimental/ExtensionMethod.html delete mode 100644 website2/templates/features/experimental/FieldDefaults.html delete mode 100644 website2/templates/features/experimental/Helper.html delete mode 100644 website2/templates/features/experimental/UtilityClass.html delete mode 100644 website2/templates/features/experimental/Wither.html delete mode 100644 website2/templates/features/experimental/index.html delete mode 100644 website2/templates/features/experimental/onX.html delete mode 100644 website2/templates/features/experimental/var.html delete mode 100644 website2/templates/features/index.html delete mode 100644 website2/templates/features/log.html delete mode 100644 website2/templates/features/val.html (limited to 'website2/templates/features') diff --git a/website2/templates/features/Builder.html b/website2/templates/features/Builder.html deleted file mode 100644 index a6b8d18f..00000000 --- a/website2/templates/features/Builder.html +++ /dev/null @@ -1,163 +0,0 @@ -<#import "_features.html" as f> - -<@f.scaffold title="@Builder" logline="... and Bob's your uncle: No-hassle fancy-pants APIs for object creation!"> - <@f.history> -

- @Builder was introduced as experimental feature in lombok v0.12.0. -

- @Builder gained @Singular support and was promoted to the main lombok package since lombok v1.16.0. -

- @Builder with @Singular adds a clear method since lombok v1.16.8. -

- @Builder.Default functionality was added in lombok v1.16.16. -

- - - <@f.overview> -

- The @Builder annotation produces complex builder APIs for your classes. -

- @Builder lets you automatically produce the code required to have your class be instantiable with code such as:
- Person.builder().name("Adam Savage").city("San Francisco").job("Mythbusters").job("Unchained Reaction").build(); -

- @Builder can be placed on a class, or on a constructor, or on a method. While the "on a class" and "on a constructor" mode are the most common use-case, @Builder is most easily explained with the "method" use-case. -

- A method annotated with @Builder (from now on called the target) causes the following 7 things to be generated: -

- Each listed generated element will be silently skipped if that element already exists (disregarding parameter counts and looking only at names). This includes the builder itself: If that class already exists, lombok will simply start injecting fields and methods inside this already existing class, unless of course the fields / methods to be injected already exist. You may not put any other method (or constructor) generating lombok annotation on a builder class though; for example, you can not put @EqualsAndHashCode on the builder class. -

- @Builder can generate so-called 'singular' methods for collection parameters/fields. These take 1 element instead of an entire list, and add the element to the list. For example: Person.builder().job("Mythbusters").job("Unchained Reaction").build(); would result in the List<String> jobs field to have 2 strings in it. To get this behaviour, the field/parameter needs to be annotated with @Singular. The feature has its own documentation. -

- Now that the "method" mode is clear, putting a @Builder annotation on a constructor functions similarly; effectively, constructors are just static methods that have a special syntax to invoke them: Their 'return type' is the class they construct, and their type parameters are the same as the type parameters of the class itself. -

- Finally, applying @Builder to a class is as if you added @AllArgsConstructor(access = AccessLevel.PACKAGE) to the class and applied the @Builder annotation to this all-args-constructor. This only works if you haven't written any explicit constructors yourself. If you do have an explicit constructor, put the @Builder annotation on the constructor instead of on the class. -

- If using @Builder to generate builders to produce instances of your own class (this is always the case unless adding @Builder to a method that doesn't return your own type), you can use @Builder(toBuilder = true) to also generate an instance method in your class called toBuilder(); it creates a new builder that starts out with all the values of this instance. You can put the @Builder.ObtainVia annotation on the parameters (in case of a constructor or method) or fields (in case of @Builder on a type) to indicate alternative means by which the value for that field/parameter is obtained from this instance. For example, you can specify a method to be invoked: @Builder.ObtainVia(method = "calculateFoo"). -

- The name of the builder class is FoobarBuilder, where Foobar is the simplified, title-cased form of the return type of the target - that is, the name of your type for @Builder on constructors and types, and the name of the return type for @Builder on methods. For example, if @Builder is applied to a class named com.yoyodyne.FancyList<T>, then the builder name will be FancyListBuilder<T>. If @Builder is applied to a method that returns void, the builder will be named VoidBuilder. -

- The configurable aspects of builder are: -

- Example usage where all options are changed from their defaults:
- @Builder(builderClassName = "HelloWorldBuilder", buildMethodName = "execute", builderMethodName = "helloWorld", toBuilder = true)
-

- - - <@f.featureSection> -

@Builder.Default

- -

- If a certain field/parameter is never set during a build session, then it always gets 0 / null / false. If you've put @Builder on a class (and not a method or constructor) you can instead specify the default directly on the field, and annotate the field with @Builder.Default:
- @Builder.Default private final long created = System.currentTimeMillis(); -

- - - <@f.featureSection> -

@Singular

- -

- By annotating one of the parameters (if annotating a method or constructor with @Builder) or fields (if annotating a class with @Builder) with the @Singular annotation, lombok will treat that builder node as a collection, and it generates 2 'adder' methods instead of a 'setter' method. One which adds a single element to the collection, and one which adds all elements of another collection to the collection. No setter to just set the collection (replacing whatever was already added) will be generated. A 'clear' method is also generated. These 'singular' builders are very complicated in order to guarantee the following properties: -

-

- @Singular can only be applied to collection types known to lombok. Currently, the supported types are: -

-

- If your identifiers are written in common english, lombok assumes that the name of any collection with @Singular on it is an english plural and will attempt to automatically singularize that name. If this is possible, the add-one method will use this name. For example, if your collection is called statuses, then the add-one method will automatically be called status. You can also specify the singular form of your identifier explictly by passing the singular form as argument to the annotation like so: @Singular("axis") List<Line> axes;.
- If lombok cannot singularize your identifier, or it is ambiguous, lombok will generate an error and force you to explicitly specify the singular name. -

- The snippet below does not show what lombok generates for a @Singular field/parameter because it is rather complicated. You can view a snippet here. -

- - - <@f.snippets name="Builder" /> - - <@f.confKeys> -
- lombok.builder.flagUsage = [warning | error] (default: not set) -
- Lombok will flag any usage of @Builder as a warning or error if configured. -
- lombok.singular.useGuava = [true | false] (default: false) -
- If true, lombok will use guava's ImmutableXxx builders and types to implement java.util collection interfaces, instead of creating implementations based on Collections.unmodifiableXxx. You must ensure that guava is actually available on the classpath and buildpath if you use this setting. Guava is used automatically if your field/parameter has one of the guava ImmutableXxx types. -
- lombok.singular.auto = [true | false] (default: true) -
- If true (which is the default), lombok automatically tries to singularize your identifier name by assuming that it is a common english plural. If false, you must always explicitly specify the singular name, and lombok will generate an error if you don't (useful if you write your code in a language other than english). -
- - - <@f.smallPrint> -

- @Singular support for java.util.NavigableMap/Set only works if you are compiling with JDK1.8 or higher. -

- You cannot manually provide some or all parts of a @Singular node; the code lombok generates is too complex for this. If you want to manually control (part of) the builder code associated with some field or parameter, don't use @Singular and add everything you need manually. -

- The sorted collections (java.util: SortedSet, NavigableSet, SortedMap, NavigableMap and guava: ImmutableSortedSet, ImmutableSortedMap) require that the type argument of the collection has natural order (implements java.util.Comparable). There is no way to pass an explicit Comparator to use in the builder. -

- An ArrayList is used to store added elements as call methods of a @Singular marked field, if the target collection is from the java.util package, even if the collection is a set or map. Because lombok ensures that generated collections are compacted, a new backing instance of a set or map must be constructed anyway, and storing the data as an ArrayList during the build process is more efficient that storing it as a map or set. This behaviour is not externally visible, an implementation detail of the current implementation of the java.util recipes for @Singular @Builder. -

- With toBuilder = true applied to methods, any type parameter of the annotated method itself must also show up in the return type. -

- - diff --git a/website2/templates/features/BuilderSingular.html b/website2/templates/features/BuilderSingular.html deleted file mode 100644 index 10253365..00000000 --- a/website2/templates/features/BuilderSingular.html +++ /dev/null @@ -1,5 +0,0 @@ -<#import "_features.html" as f> - -<@f.scaffold title="@Builder @Singular" logline="... and Bob's your uncle: No-hassle fancy-pants APIs for object creation!"> - <@f.snippets name="Singular-snippet" /> - diff --git a/website2/templates/features/Cleanup.html b/website2/templates/features/Cleanup.html deleted file mode 100644 index e868c40d..00000000 --- a/website2/templates/features/Cleanup.html +++ /dev/null @@ -1,35 +0,0 @@ -<#import "_features.html" as f> - -<@f.scaffold title="@Cleanup" logline="Automatic resource management: Call your close() methods safely with no hassle."> - <@f.overview> -

- You can use @Cleanup to ensure a given resource is automatically cleaned up before the code execution path exits your current scope. You do this by annotating any local variable declaration with the @Cleanup annotation like so:
- @Cleanup InputStream in = new FileInputStream("some/file");
- As a result, at the end of the scope you're in, in.close() is called. This call is guaranteed to run by way of a try/finally construct. Look at the example below to see how this works. -

- If the type of object you'd like to cleanup does not have a close() method, but some other no-argument method, you can specify the name of this method like so:
- @Cleanup("dispose") org.eclipse.swt.widgets.CoolBar bar = new CoolBar(parent, 0);
- By default, the cleanup method is presumed to be close(). A cleanup method that takes 1 or more arguments cannot be called via @Cleanup. -

- - - <@f.snippets name="Cleanup" /> - - <@f.confKeys> -
- lombok.cleanup.flagUsage = [warning | error] (default: not set) -
- Lombok will flag any usage of @Cleanup as a warning or error if configured. - - - - <@f.smallPrint> -

- In the finally block, the cleanup method is only called if the given resource is not null. However, if you use delombok on the code, a call to lombok.Lombok.preventNullAnalysis(Object o) is inserted to prevent warnings if static code analysis could determine that a null-check would not be needed. Compilation with lombok.jar on the classpath removes that method call, so there is no runtime dependency. -

- If your code throws an exception, and the cleanup method call that is then triggered also throws an exception, then the original exception is hidden by the exception thrown by the cleanup call. You should not rely on this 'feature'. Preferably, lombok would like to generate code so that, if the main body has thrown an exception, any exception thrown by the close call is silently swallowed (but if the main body exited in any other way, exceptions by the close call will not be swallowed). The authors of lombok do not currently know of a feasible way to implement this scheme, but if java updates allow it, or we find a way, we'll fix it. -

- You do still need to handle any exception that the cleanup method can generate! -

- - diff --git a/website2/templates/features/Data.html b/website2/templates/features/Data.html deleted file mode 100644 index 59370cc8..00000000 --- a/website2/templates/features/Data.html +++ /dev/null @@ -1,41 +0,0 @@ -<#import "_features.html" as f> - -<@f.scaffold title="@Data" - logline="All together now: A shortcut for @ToString, @EqualsAndHashCode, @Getter on all fields, @Setter on all non-final fields, and @RequiredArgsConstructor!"> - - <@f.overview> -

- @Data is a convenient shortcut annotation that bundles the features of @ToString, @EqualsAndHashCode, @Getter / @Setter and @RequiredArgsConstructor together: In other words, @Data generates all the boilerplate that is normally associated with simple POJOs (Plain Old Java Objects) and beans: getters for all fields, setters for all non-final fields, and appropriate toString, equals and hashCode implementations that involve the fields of the class, and a constructor that initializes all final fields, as well as all non-final fields with no initializer that have been marked with @NonNull, in order to ensure the field is never null. -

- @Data is like having implicit @Getter, @Setter, @ToString, @EqualsAndHashCode and @RequiredArgsConstructor annotations on the class (except that no constructor will be generated if any explicitly written constructors already exist). However, the parameters of these annotations (such as callSuper, includeFieldNames and exclude) cannot be set with @Data. If you need to set non-default values for any of these parameters, just add those annotations explicitly; @Data is smart enough to defer to those annotations. -

- All generated getters and setters will be public. To override the access level, annotate the field or class with an explicit @Setter and/or @Getter annotation. You can also use this annotation (by combining it with AccessLevel.NONE) to suppress generating a getter and/or setter altogether. -

- All fields marked as transient will not be considered for hashCode and equals. All static fields will be skipped entirely (not considered for any of the generated methods, and no setter/getter will be made for them). -

- If the class already contains a method with the same name and parameter count as any method that would normally be generated, that method is not generated, and no warning or error is emitted. For example, if you already have a method with signature equals(AnyType param), no equals method will be generated, even though technically it might be an entirely different method due to having different parameter types. The same rule applies to the constructor (any explicit constructor will prevent @Data from generating one), as well as toString, equals, and all getters and setters. You can mark any constructor or method with @lombok.experimental.Tolerate to hide them from lombok. -

- @Data can handle generics parameters for fields just fine. In order to reduce the boilerplate when constructing objects for classes with generics, you can use the staticConstructor parameter to generate a private constructor, as well as a static method that returns a new instance. This way, javac will infer the variable name. Thus, by declaring like so: @Data(staticConstructor="of") class Foo<T> { private T x;} you can create new instances of Foo by writing: Foo.of(5); instead of having to write: new Foo<Integer>(5);. -

- - - <@f.snippets name="Data" /> - - <@f.confKeys> -
- lombok.data.flagUsage = [warning | error] (default: not set) -
- Lombok will flag any usage of @Data as a warning or error if configured. -
- - - <@f.smallPrint> -

- See the small print of @ToString, @EqualsAndHashCode, @Getter / @Setter and @RequiredArgsConstructor. -

- Any annotations named @NonNull (case insensitive) on a field are interpreted as: This field must not ever hold null. Therefore, these annotations result in an explicit null check in the generated constructor for the provided field. Also, these annotations (as well as any annotation named @Nullable) are copied to the constructor parameter, in both the true constructor and any static constructor. The same principle applies to generated getters and setters (see the documentation for @Getter / @Setter) -

- By default, any variables that start with a $ symbol are excluded automatically. You can include them by specifying an explicit annotation (@Getter or @ToString, for example) and using the 'of' parameter. -

- - diff --git a/website2/templates/features/EqualsAndHashCode.html b/website2/templates/features/EqualsAndHashCode.html deleted file mode 100644 index 3c11367f..00000000 --- a/website2/templates/features/EqualsAndHashCode.html +++ /dev/null @@ -1,56 +0,0 @@ -<#import "_features.html" as f> - -<@f.scaffold title="@EqualsAndHashCode" logline="Equality made easy: Generates hashCode and equals implementations from the fields of your object."> - <@f.overview> -

- Any class definition may be annotated with @EqualsAndHashCode to let lombok generate implementations of the equals(Object other) and hashCode() methods. By default, it'll use all non-static, non-transient fields, but you can exclude more fields by naming them in the optional exclude parameter to the annotation. Alternatively, you can specify exactly which fields you wish to be used by naming them in the of parameter. -

- If applying @EqualsAndHashCode to a class that extends another, this feature gets a bit trickier. Normally, auto-generating an equals and hashCode method for such classes is a bad idea, as the superclass also defines fields, which also need equals/hashCode code but this code will not be generated. By setting callSuper to true, you can include the equals and hashCode methods of your superclass in the generated methods. For hashCode, the result of super.hashCode() is included in the hash algorithm, and forequals, the generated method will return false if the super implementation thinks it is not equal to the passed in object. Be aware that not all equals implementations handle this situation properly. However, lombok-generated equals implementations do handle this situation properly, so you can safely call your superclass equals if it, too, has a lombok-generated equals method. If you have an explicit superclass you are forced to supply some value for callSuper to acknowledge that you've considered it; failure to do so results in a warning. -

- Setting callSuper to true when you don't extend anything (you extend java.lang.Object) is a compile-time error, because it would turn the generated equals() and hashCode() implementations into having the same behaviour as simply inheriting these methods from java.lang.Object: only the same object will be equal to each other and will have the same hashCode. Not setting callSuper to true when you extend another class generates a warning, because unless the superclass has no (equality-important) fields, lombok cannot generate an implementation for you that takes into account the fields declared by your superclasses. You'll need to write your own implementations, or rely on the callSuper chaining facility. You can also use the lombok.equalsAndHashCode.callSuper config key. -

- NEW in Lombok 0.10: Unless your class is final and extends java.lang.Object, lombok generates a canEqual method which means JPA proxies can still be equal to their base class, but subclasses that add new state don't break the equals contract. The complicated reasons for why such a method is necessary are explained in this paper: How to Write an Equality Method in Java. If all classes in a hierarchy are a mix of scala case classes and classes with lombok-generated equals methods, all equality will 'just work'. If you need to write your own equals methods, you should always override canEqual if you change equals and hashCode. -

- NEW in Lombok 1.14.0: To put annotations on the other parameter of the equals (and, if relevant, canEqual) method, you can use onParam=@__({@AnnotationsHere}). Be careful though! This is an experimental feature. For more details see the documentation on the onX feature. -

- - - <@f.snippets name="EqualsAndHashCode" /> - - <@f.confKeys> -
- lombok.equalsAndHashCode.doNotUseGetters = [true | false] (default: false) -
- If set to true, lombok will access fields directly instead of using getters (if available) when generating equals and hashCode methods. The annotation parameter 'doNotUseGetters', if explicitly specified, takes precedence over this setting. -
- lombok.equalsAndHashCode.callSuper = [call | skip | warn] (default: warn) -
- If set to call, lombok will generate calls to the superclass implementation of hashCode and equals if your class extends something. If set to skip no such calls are generated. The default behaviour is like skip, with an additional warning. -
- lombok.equalsAndHashCode.flagUsage = [warning | error] (default: not set) -
- Lombok will flag any usage of @EqualsAndHashCode as a warning or error if configured. -
- - - <@f.smallPrint> -

- Arrays are 'deep' compared/hashCoded, which means that arrays that contain themselves will result in StackOverflowErrors. However, this behaviour is no different from e.g. ArrayList. -

- You may safely presume that the hashCode implementation used will not change between versions of lombok, however this guarantee is not set in stone; if there's a significant performance improvement to be gained from using an alternate hash algorithm, that will be substituted in a future version. -

- For the purposes of equality, 2 NaN (not a number) values for floats and doubles are considered equal, eventhough 'NaN == NaN' would return false. This is analogous to java.lang.Double's equals method, and is in fact required to ensure that comparing an object to an exact copy of itself returns true for equality. -

- If there is any method named either hashCode or equals, regardless of return type, no methods will be generated, and a warning is emitted instead. These 2 methods need to be in sync with each other, which lombok cannot guarantee unless it generates all the methods, hence you always get a warning if one or both of the methods already exist. You can mark any method with @lombok.experimental.Tolerate to hide them from lombok. -

- Attempting to exclude fields that don't exist or would have been excluded anyway (because they are static or transient) results in warnings on the named fields. You therefore don't have to worry about typos. -

- Having both exclude and of generates a warning; the exclude parameter will be ignored in that case. -

- By default, any variables that start with a $ symbol are excluded automatically. You can onlyinclude them by using the 'of' parameter. -

- If a getter exists for a field to be included, it is called instead of using a direct field reference. This behaviour can be suppressed:
- @EqualsAndHashCode(doNotUseGetters = true) -

- - diff --git a/website2/templates/features/GetterLazy.html b/website2/templates/features/GetterLazy.html deleted file mode 100644 index b1f374a8..00000000 --- a/website2/templates/features/GetterLazy.html +++ /dev/null @@ -1,31 +0,0 @@ -<#import "_features.html" as f> - -<@f.scaffold title="@Getter(lazy=true)" logline="Laziness is a virtue!"> - <@f.history> - @Getter(lazy=true) was introduced in Lombok v0.10. - - - <@f.overview> -

- You can let lombok generate a getter which will calculate a value once, the first time this getter is called, and cache it from then on. This can be useful if calculating the value takes a lot of CPU, or the value takes a lot of memory. To use this feature, create a private final variable, initialize it with the expression that's expensive to run, and annotate your field with @Getter(lazy=true). The field will be hidden from the rest of your code, and the expression will be evaluated no more than once, when the getter is first called. There are no magic marker values (i.e. even if the result of your expensive calculation is null, the result is cached) and your expensive calculation need not be thread-safe, as lombok takes care of locking. -

- - - <@f.snippets name="GetterLazy" /> - - <@f.confKeys> -
- lombok.getter.lazy.flagUsage = [warning | error] (default: not set) -
- Lombok will flag any usage of @Getter(lazy=true) as a warning or error if configured. -
- - - <@f.smallPrint> -

- You should never refer to the field directly, always use the getter generated by lombok, because the type of the field will be mangled into an AtomicReference. Do not try to directly access this AtomicReference; if it points to itself, the value has been calculated, and it is null. If the reference points to null, then the value has not been calculated. This behaviour may change in future versions. Therefore, always use the generated getter to access your field! -

- Other Lombok annotations such as @ToString always call the getter even if you use doNotUseGetters=true. -

- - diff --git a/website2/templates/features/GetterSetter.html b/website2/templates/features/GetterSetter.html deleted file mode 100644 index 7ceaa3ba..00000000 --- a/website2/templates/features/GetterSetter.html +++ /dev/null @@ -1,70 +0,0 @@ -<#import "_features.html" as f> - -<@f.scaffold title="@Getter and @Setter" logline="Never write public int getFoo() {return foo;} again."> - <@f.overview> -

- You can annotate any field with @Getter and/or @Setter, to let lombok generate the default getter/setter automatically.
- A default getter simply returns the field, and is named getFoo if the field is called foo (or isFoo if the field's type is boolean). A default setter is named setFoo if the field is called foo, returns void, and takes 1 parameter of the same type as the field. It simply sets the field to this value. -

- The generated getter/setter method will be public unless you explicitly specify an AccessLevel, as shown in the example below. Legal access levels are PUBLIC, PROTECTED, PACKAGE, and PRIVATE. -

- You can also put a @Getter and/or @Setter annotation on a class. In that case, it's as if you annotate all the non-static fields in that class with the annotation. -

- You can always manually disable getter/setter generation for any field by using the special AccessLevel.NONE access level. This lets you override the behaviour of a @Getter, @Setter or @Data annotation on a class. -

- To put annotations on the generated method, you can use onMethod=@__({@AnnotationsHere}); to put annotations on the only parameter of a generated setter method, you can use onParam=@__({@AnnotationsHere}). Be careful though! This is an experimental feature. For more details see the documentation on the onX feature. -

- NEW in lombok v1.12.0: javadoc on the field will now be copied to generated getters and setters. Normally, all text is copied, and @return is moved to the getter, whilst @param lines are moved to the setter. Moved means: Deleted from the field's javadoc. It is also possible to define unique text for each getter/setter. To do that, you create a 'section' named GETTER and/or SETTER. A section is a line in your javadoc containing 2 or more dashes, then the text 'GETTER' or 'SETTER', followed by 2 or more dashes, and nothing else on the line. If you use sections, @return and @param stripping for that section is no longer done (move the @return or @param line into the section). -

- - - <@f.snippets name="GetterSetter" /> - - <@f.confKeys> -
- lombok.accessors.chain = [true | false] (default: false) -
- If set to true, generated setters will return this (instead of void). An explicitly configured chain parameter of an @Accessors annotation takes precedence over this setting. -
- lombok.accessors.fluent = [true | false] (default: false) -
- If set to true, generated getters and setters will not be prefixed with the bean-standard 'get, is or set; instead, the methods will use the same name as the field (minus prefixes). An explicitly configured chain parameter of an @Accessors annotation takes precedence over this setting. -
- lombok.accessors.prefix += a field prefix (default: empty list) -
- This is a list property; entries can be added with the += operator. Inherited prefixes from parent config files can be removed with the -= operator. Lombok will strip any matching field prefix from the name of a field in order to determine the name of the getter/setter to generate. For example, if m is one of the prefixes listed in this setting, then a field named mFoobar will result in a getter named getFoobar(), not getMFoobar(). An explicitly configured prefix parameter of an @Accessors annotation takes precedence over this setting. -
- lombok.getter.noIsPrefix = [true | false] (default: false) -
- If set to true, getters generated for boolean fields will use the get prefix instead of the defaultis prefix, and any generated code that calls getters, such as @ToString, will also use get instead of is -
- lombok.setter.flagUsage = [warning | error] (default: not set) -
- Lombok will flag any usage of @Setter as a warning or error if configured. -
- lombok.getter.flagUsage = [warning | error] (default: not set) -
- Lombok will flag any usage of @Getter as a warning or error if configured. -
- - - <@f.smallPrint> -

- For generating the method names, the first character of the field, if it is a lowercase character, is title-cased, otherwise, it is left unmodified. Then, get/set/is is prefixed. -

- No method is generated if any method already exists with the same name (case insensitive) and same parameter count. For example, getFoo() will not be generated if there's already a method getFoo(String... x) even though it is technically possible to make the method. This caveat exists to prevent confusion. If the generation of a method is skipped for this reason, a warning is emitted instead. Varargs count as 0 to N parameters. You can mark any method with @lombok.experimental.Tolerate to hide them from lombok. -

- For boolean fields that start with is immediately followed by a title-case letter, nothing is prefixed to generate the getter name. -

- Any variation on boolean will not result in using the is prefix instead of the get prefix; for example, returning java.lang.Boolean results in a get prefix, not an is prefix. -

- Any annotations named @NonNull (case insensitive) on the field are interpreted as: This field must not ever hold null. Therefore, these annotations result in an explicit null check in the generated setter. Also, these annotations (as well as any annotation named @Nullable or @CheckForNull) are copied to setter parameter and getter method. -

- You can annotate a class with a @Getter or @Setter annotation. Doing so is equivalent to annotating all non-static fields in that class with that annotation. @Getter/@Setter annotations on fields take precedence over the ones on classes. -

- Using the AccessLevel.NONE access level simply generates nothing. It's useful only in combination with @Data or a class-wide @Getter or @Setter. -

- @Getter can also be used on enums. @Setter can't, not for a technical reason, but for a pragmatic one: Setters on enums are an extremely bad idea. -

- - diff --git a/website2/templates/features/NonNull.html b/website2/templates/features/NonNull.html deleted file mode 100644 index 28d083d0..00000000 --- a/website2/templates/features/NonNull.html +++ /dev/null @@ -1,45 +0,0 @@ -<#import "_features.html" as f> - -<@f.scaffold title="@NonNull" logline="or: How I learned to stop worrying and love the NullPointerException."> - <@f.history> - @NonNull was introduced in lombok v0.11.10. - - - <@f.overview> -

- You can use @NonNull on the parameter of a method or constructor to have lombok generate a null-check statement for you. -

- Lombok has always treated any annotation named @NonNull on a field as a signal to generate a null-check if lombok generates an entire method or constructor for you, via for example @Data. Now, however, using lombok's own @lombok.NonNull on a parameter results in the insertion of just the null-check statement inside your own method or constructor. -

- The null-check looks like if (param == null) throw new NullPointerException("param"); and will be inserted at the very top of your method. For constructors, the null-check will be inserted immediately following any explicit this() or super() calls. -

- If a null-check is already present at the top, no additional null-check will be generated. -

- - - <@f.snippets name="NonNull" /> - - <@f.confKeys> -
- lombok.nonNull.exceptionType = [NullPointerException | IllegalArgumentException] (default: NullPointerException). -
- When lombok generates a null-check if statement, by default, a java.lang.NullPointerException will be thrown with the field name as the exception message. However, you can use IllegalArgumentException in this configuration key to have lombok throw that exception, with 'fieldName is null' as exception message. -
- lombok.nonNull.flagUsage = [warning | error] (default: not set) -
- Lombok will flag any usage of @NonNull as a warning or error if configured. -
- - - <@f.smallPrint> -

- Lombok's detection scheme for already existing null-checks consists of scanning for if statements that look just like lombok's own. Any 'throws' statement as the 'then' part of the if statement, whether in braces or not, counts. The conditional of the if statement must look exactly like PARAMNAME == null. The first statement in your method that is not such a null-check stops the process of inspecting for null-checks. -

- While @Data and other method-generating lombok annotations will trigger on any annotation named @NonNull regardless of casing or package name, this feature only triggers on lombok's own @NonNull annotation from the lombok package. -

- A @NonNull on a primitive parameter results in a warning. No null-check will be generated. -

- A @NonNull on a parameter of an abstract method used to generate a warning; starting with version 1.16.8, this is no longer the case, to acknowledge the notion that @NonNull also has a documentary role. For the same reason, you can annotate a method as @NonNull; this is allowed, generates no warning, and does not generate any code. -

- - diff --git a/website2/templates/features/SneakyThrows.html b/website2/templates/features/SneakyThrows.html deleted file mode 100644 index 5a2d5bbd..00000000 --- a/website2/templates/features/SneakyThrows.html +++ /dev/null @@ -1,44 +0,0 @@ -<#import "_features.html" as f> - -<@f.scaffold title="@SneakyThrows" logline="To boldly throw checked exceptions where no one has thrown them before!"> - <@f.overview> -

- @SneakyThrows can be used to sneakily throw checked exceptions without actually declaring this in your method's throws clause. This somewhat contentious ability should be used carefully, of course. The code generated by lombok will not ignore, wrap, replace, or otherwise modify the thrown checked exception; it simply fakes out the compiler. On the JVM (class file) level, all exceptions, checked or not, can be thrown regardless of the throws clause of your methods, which is why this works. -

- Common use cases for when you want to opt out of the checked exception mechanism center around 2 situations:
-

-

- Be aware that it is impossible to catch sneakily thrown checked types directly, as javac will not let you write a catch block for an exception type that no method call in the try body declares as thrown. This problem is not relevant in either of the use cases listed above, so let this serve as a warning that you should not use the @SneakyThrows mechanism without some deliberation! -

- You can pass any number of exceptions to the @SneakyThrows annotation. If you pass no exceptions, you may throw any exception sneakily. -

- - - <@f.snippets name="SneakyThrows" /> - - <@f.confKeys> -
- lombok.sneakyThrows.flagUsage = [warning | error] (default: not set) -
- Lombok will flag any usage of @SneakyThrows as a warning or error if configured. -
- - - <@f.smallPrint> -

- Because @SneakyThrows is an implementation detail and not part of your method signature, it is an error if you try to declare a checked exception as sneakily thrown when you don't call any methods that throw this exception. (Doing so is perfectly legal for throws statements to accommodate subclasses). Similarly, @SneakyThrows does not inherit. -

- For the nay-sayers in the crowd: Out of the box, Eclipse will offer a 'quick-fix' for uncaught exceptions that wraps the offending statement in a try/catch block with just e.printStackTrace() in the catch block. This is so spectacularly non-productive compared to just sneakily throwing the exception onwards, that Roel and Reinier feel more than justified in claiming that the checked exception system is far from perfect, and thus an opt-out mechanism is warranted. -

- If you put @SneakyThrows on a constructor, any call to a sibling or super constructor is excluded from the @SneakyThrows treatment. This is a java restriction we cannot work around: Calls to sibling/super constructors MUST be the first statement in the constructor; they cannot be placed inside try/catch blocks. -

- @SneakyThrows on an empty method, or a constructor that is empty or only has a call to a sibling / super constructor results in no try/catch block and a warning. -

- - diff --git a/website2/templates/features/Synchronized.html b/website2/templates/features/Synchronized.html deleted file mode 100644 index 113add0e..00000000 --- a/website2/templates/features/Synchronized.html +++ /dev/null @@ -1,34 +0,0 @@ -<#import "_features.html" as f> - -<@f.scaffold title="@Synchronized" logline="synchronized done right: Don't expose your locks."> - <@f.overview> -

- @Synchronized is a safer variant of the synchronized method modifier. Like synchronized, the annotation can be used on static and instance methods only. It operates similarly to the synchronized keyword, but it locks on different objects. The keyword locks on this, but the annotation locks on a field named $lock, which is private.
- If the field does not exist, it is created for you. If you annotate a static method, the annotation locks on a static field named $LOCK instead. -

- If you want, you can create these locks yourself. The $lock and $LOCK fields will of course not be generated if you already created them yourself. You can also choose to lock on another field, by specifying it as parameter to the @Synchronized annotation. In this usage variant, the fields will not be created automatically, and you must explicitly create them yourself, or an error will be emitted. -

- Locking on this or your own class object can have unfortunate side-effects, as other code not under your control can lock on these objects as well, which can cause race conditions and other nasty threading-related bugs. -

- - - <@f.snippets name="Synchronized" /> - - <@f.confKeys> -
- lombok.synchronized.flagUsage = [warning | error] (default: not set) -
- Lombok will flag any usage of @Synchronized as a warning or error if configured. -
- - - <@f.smallPrint> -

- If $lock and/or $LOCK are auto-generated, the fields are initialized with an empty Object[] array, and not just a new Object() as most snippets showing this pattern in action use. Lombok does this because a new object is NOT serializable, but 0-size array is. Therefore, using @Synchronized will not prevent your object from being serialized. -

- Having at least one @Synchronized method in your class means there will be a lock field, but if you later remove all such methods, there will no longer be a lock field. That means your predetermined serialVersionUID changes. We suggest you always add a serialVersionUID to your classes if you intend to store them long-term via java's serialization mechanism. If you do so, removing all @Synchronized annotations from your method will not break serialization. -

- If you'd like to know why a field is not automatically generated when you choose your own name for the lock object: Because otherwise making a typo in the field name will result in a very hard to find bug! -

- - diff --git a/website2/templates/features/ToString.html b/website2/templates/features/ToString.html deleted file mode 100644 index 6f230561..00000000 --- a/website2/templates/features/ToString.html +++ /dev/null @@ -1,54 +0,0 @@ -<#import "_features.html" as f> - -<@f.scaffold title="@ToString" logline="No need to start a debugger to see your fields: Just let lombok generate a toString for you!"> - <@f.overview> -

- Any class definition may be annotated with @ToString to let lombok generate an implementation of the toString() method. By default, it'll print your class name, along with each field, in order, separated by commas. -

- By setting the includeFieldNames parameter to true you can add some clarity (but also quite some length) to the output of the toString() method. -

- By default, all non-static fields will be printed. If you want to skip some fields, you can name them in the exclude parameter; each named field will not be printed at all. Alternatively, you can specify exactly which fields you wish to be used by naming them in the of parameter. -

- By setting callSuper to true, you can include the output of the superclass implementation of toString to the output. Be aware that the default implementation of toString() in java.lang.Object is pretty much meaningless, so you probably don't want to do this unless you are extending another class. -

- - - <@f.snippets name="ToString" /> - - <@f.confKeys> -
- lombok.toString.includeFieldNames = [true | false] (default: true) -
- Normally lombok generates a fragment of the toString response for each field in the form of fieldName = fieldValue. If this setting is set to false, lombok will omit the name of the field and simply deploy a comma-separated list of all the field values. The annotation parameter 'includeFieldNames', if explicitly specified, takes precedence over this setting. -
- lombok.toString.doNotUseGetters = [true | false] (default: false) -
- If set to true, lombok will access fields directly instead of using getters (if available) when generating toString methods. The annotation parameter 'doNotUseGetters', if explicitly specified, takes precedence over this setting. -
- lombok.toString.flagUsage = [warning | error] (default: not set) -
- Lombok will flag any usage of @ToString as a warning or error if configured. -
- - - <@f.smallPrint> -

- If there is any method named toString with no arguments, regardless of return type, no method will be generated, and instead a warning is emitted explaining that your @ToString annotation is doing nothing. You can mark any method with @lombok.experimental.Tolerate to hide them from lombok. -

- Arrays are printed via Arrays.deepToString, which means that arrays that contain themselves will result in StackOverflowErrors. However, this behaviour is no different from e.g. ArrayList. -

- Attempting to exclude fields that don't exist or would have been excluded anyway (because they are static) results in warnings on the named fields. You therefore don't have to worry about typos. -

- Having both exclude and of generates a warning; the exclude parameter will be ignored in that case. -

- We don't promise to keep the output of the generated toString() methods the same between lombok versions. You should never design your API so that other code is forced to parse your toString() output anyway! -

- By default, any variables that start with a $ symbol are excluded automatically. You can only include them by using the 'of' parameter. -

- If a getter exists for a field to be included, it is called instead of using a direct field reference. This behaviour can be suppressed:
- @ToString(doNotUseGetters = true) -

- @ToString can also be used on an enum definition. -

- - diff --git a/website2/templates/features/Value.html b/website2/templates/features/Value.html deleted file mode 100644 index fdad0e12..00000000 --- a/website2/templates/features/Value.html +++ /dev/null @@ -1,50 +0,0 @@ -<#import "_features.html" as f> - -<@f.scaffold title="@Value" logline="Immutable classes made very easy."> - <@f.history> -

- @Value was introduced as experimental feature in lombok v0.11.4. -

- @Value no longer implies @Wither since lombok v0.11.8. -

- @Value promoted to the main lombok package since lombok v0.12.0. -

- - - <@f.overview> -

- @Value is the immutable variant of @Data; all fields are made private and final by default, and setters are not generated. The class itself is also made final by default, because immutability is not something that can be forced onto a subclass. Like @Data, useful toString(), equals() and hashCode() methods are also generated, each field gets a getter method, and a constructor that covers every argument (except final fields that are initialized in the field declaration) is also generated. -

- In practice, @Value is shorthand for: final @ToString @EqualsAndHashCode @AllArgsConstructor @FieldDefaults(makeFinal = true, level = AccessLevel.PRIVATE) @Getter, except that explicitly including an implementation of any of the relevant methods simply means that part won't be generated and no warning will be emitted. For example, if you write your own toString, no error occurs, and lombok will not generate a toString. Also, any explicit constructor, no matter the arguments list, implies lombok will not generate a constructor. If you do want lombok to generate the all-args constructor, add @AllArgsConstructor to the class. You can mark any constructor or method with @lombok.experimental.Tolerate to hide them from lombok. -

- It is possible to override the final-by-default and private-by-default behavior using either an explicit access level on a field, or by using the @NonFinal or @PackagePrivate annotations.
- It is possible to override any default behavior for any of the 'parts' that make up @Value by explicitly using that annotation. -

- - - <@f.snippets name="Value" /> - - <@f.confKeys> -
- lombok.value.flagUsage = [warning | error] (default: not set) -
- Lombok will flag any usage of @Value as a warning or error if configured. -
- lombok.val.flagUsage = [warning | error] (default: not set) -
- Lombok will flag any usage of val as a warning or error if configured. -
- - - <@f.smallPrint> -

- Look for the documentation on the 'parts' of @Value: @ToString, @EqualsAndHashCode, @AllArgsConstructor, @FieldDefaults, and @Getter. -

- For classes with generics, it's useful to have a static method which serves as a constructor, because inference of generic parameters via static methods works in java6 and avoids having to use the diamond operator. While you can force this by applying an explicit @AllArgsConstructor(staticConstructor="of") annotation, there's also the @Value(staticConstructor="of") feature, which will make the generated all-arguments constructor private, and generates a public static method named of which is a wrapper around this private constructor. -

- @Value was an experimental feature from v0.11.4 to v0.11.9 (as @lombok.experimental.Value). It has since been moved into the core package. The old annotation is still around (and is an alias). It will eventually be removed in a future version, though. -

- It is not possible to use @FieldDefaults to 'undo' the private-by-default and final-by-default aspect of fields in the annotated class. Use @NonFinal and @PackagePrivate on the fields in the class to override this behaviour. -

- - diff --git a/website2/templates/features/_features.html b/website2/templates/features/_features.html deleted file mode 100644 index d7c75761..00000000 --- a/website2/templates/features/_features.html +++ /dev/null @@ -1,79 +0,0 @@ -<#import "/_scaffold.html" as main> - -<#macro featureSection> -
- <#nested> -
- - -<#macro history> -
- <#nested> -
- - -<#macro overview> -
-

Overview

- <#nested> -
- - -<#macro experimental> -
-

Experimental

- - Experimental because: - <#nested> -
- - -<#macro snippets name> -
-
-

With Lombok

- -
${usages.pre(name)?no_esc}
-
-
-
-

Vanilla Java

- -
${usages.post(name)?no_esc}
-
-
- - -<#macro confKeys> -
-

Supported configuration keys:

-
- <#nested> -
-
- - -<#macro smallPrint> -
-

Small print

- -
- <#nested> -
-
- - -<#macro scaffold title logline load=[]> - <@main.scaffold load> - - - diff --git a/website2/templates/features/configuration.html b/website2/templates/features/configuration.html deleted file mode 100644 index d33ae1c5..00000000 --- a/website2/templates/features/configuration.html +++ /dev/null @@ -1,106 +0,0 @@ -<#import "_features.html" as f> - -<@f.scaffold title="Configuration system" logline="Lombok, made to order: Configure lombok features in one place for your entire project or even your workspace."> - <@f.history> - The configuration system was introduced in lombok 1.14. - - - <@f.overview> -

- You can create lombok.config files in any directory and put configuration directives in it. These apply to all source files in this directory and all child directories.
- The configuration system is particularly useful for configurable aspects of lombok which tend to be the same across an entire project, such as the name of your log variable. The configuration system can also be used to tell lombok to flag any usage of some lombok feature you don't like as a warning or even an error. -

- Usually, a user of lombok puts a lombok.config file with their preferences in a workspace or project root directory, with the special config.stopBubbling = true key to tell lombok this is your root directory. You can then create lombok.config files in any subdirectories (generally representing projects or source packages) with different settings. -

- An up to date list of all configuration keys supported by your version of lombok can be generated by running: -

- java -jar lombok.jar config -g --verbose -
- The output of the config tool is itself a valid lombok.config file.
- The config tool can also be used to display the complete lombok configuration used for any given directory or source file by supplying these as arguments. -

- A sample of available configuration options (see the feature pages of the lombok features for their related config keys, as well as java -jar lombok.jar config -g for the complete list): -

-
- lombok.accessors.chain -
- If set to true, generated setters will 'chain' by default (They will return this instead of having a void return type). -
- lombok.accessors.fluent -
- If set to true, generated setters and getters will simply be named the same as the field name, without a get or set prefix. -
- lombok.anyConstructor.suppressConstructorProperties -
- If true, lombok will not generate a @java.beans.ConstructorProperties annotation when generating constructors. This is particularly useful for GWT and Android development. -
- lombok.log.fieldName -
- The name of the generated log field (default: log). -
- lombok.(featureName).flagUsage -
- Allows you to forcibly stop or discourage use of a lombok feature. Legal values for this key are warning or error. Some examples of values for (featureName) are: "experimental" (flags use of any of the experimental features), "builder", "sneakyThrows", or "extensionMethod". -
-
-

- Configuration files are hierarchical: Any configuration setting applies to all source files in that directory, and all source files in subdirectories, but configuration settings closer to the source file take precedence. For example, if you have in /Users/me/projects/lombok.config the following: -

- lombok.log.fieldName = foobar -
- and in /Users/me/projects/MyProject/lombok.config you have: -
- lombok.log.fieldName = xyzzy -
- Then the various @Log annotations will use foobar instead of the default log as a field name to generate in all your projects, except for your project in /Users/me/projects/MyProject, where xyzzy is used instead. -

- To restore a configuration key set by a parent config file back to the default, the clear option can be used. For example, if a parent configuration file has configured all use of val to emit a warning, you can turn off the warnings for a subdirectory by including in it a lombok.config file with: -

- clear lombok.val.flagUsage -
-

- Some configuration keys take lists. For lists, use += to add an entry. You can remove a single item from the list (useful to undo a parent configuration file's setting) with -=. For example: -

- lombok.accessors.prefix += m_ -
-

- Comments can be included in lombok.config files; any line that starts with # is considered a comment. -

- - - <@f.featureSection> -

Global config keys

- -

- To stop lombok from looking at parent directories for more configuration files, the special key: -

- config.stopBubbling = true -
- can be included. We suggest you put this in the root of your workspace directory. -

- Lombok normally adds @javax.annotation.Generated annotations to all generated nodes where possible. You can stop this with: -

- lombok.addGeneratedAnnotation = false -
-

- Lombok can add the @SuppressFBWarnings annotation which is useful if you want to run FindBugs on your class files. To enable this feature, make sure findbugs is on the classpath when you compile, and add the following config key: -

- lombok.extern.findbugs.addSuppressFBWarnings = true -
-

- - - <@f.featureSection> -

Config keys that can affect any source file

- -

- These config keys can make lombok affect source files even if they have 0 lombok annotations in them.
-

- lombok.fieldDefaults.defaultPrivate = true
- lombok.fieldDefaults.defaultFinal = true -
- Turning either of these options on means lombok will make every field in every source file final and/or private unless it has an explicit access modifier or annotation to suppress this. See the @FieldDefaults documentation for more. -

- - diff --git a/website2/templates/features/constructor.html b/website2/templates/features/constructor.html deleted file mode 100644 index 6a12fa2a..00000000 --- a/website2/templates/features/constructor.html +++ /dev/null @@ -1,57 +0,0 @@ -<#import "_features.html" as f> - -<@f.scaffold title="@NoArgsConstructor, @RequiredArgsConstructor, @AllArgsConstructor" - logline="Constructors made to order: Generates constructors that take no arguments, one argument per final / non-null field, or one argument for every field."> - - <@f.overview> -

- This set of 3 annotations generate a constructor that will accept 1 parameter for certain fields, and simply assigns this parameter to the field. -

- @NoArgsConstructor will generate a constructor with no parameters. If this is not possible (because of final fields), a compiler error will result instead, unless @NoArgsConstructor(force = true is used, then all final fields are initialized with 0 / false / null. For fields with constraints, such as @NonNull fields, no check is generated,so be aware that these constraints will generally not be fulfilled until those fields are properly initialized later. Certain java constructs, such as hibernate and the Service Provider Interface require a no-args constructor. This annotation is useful primarily in combination with either @Data or one of the other constructor generating annotations. -

- @RequiredArgsConstructor generates a constructor with 1 parameter for each field that requires special handling. All non-initialized final fields get a parameter, as well as any fields that are marked as @NonNull that aren't initialized where they are declared. For those fields marked with @NonNull, an explicit null check is also generated. The constructor will throw a NullPointerException if any of the parameters intended for the fields marked with @NonNull contain null. The order of the parameters match the order in which the fields appear in your class. -

- @AllArgsConstructor generates a constructor with 1 parameter for each field in your class. Fields marked with @NonNull result in null checks on those parameters. -

- Each of these annotations allows an alternate form, where the generated constructor is always private, and an additional static factory method that wraps around the private constructor is generated. This mode is enabled by supplying the staticName value for the annotation, like so: @RequiredArgsConstructor(staticName="of"). Such a static factory method will infer generics, unlike a normal constructor. This means your API users get write MapEntry.of("foo", 5) instead of the much longer new MapEntry<String, Integer>("foo", 5). -

- To put annotations on the generated constructor, you can use onConstructor=@__({@AnnotationsHere}), but be careful; this is an experimental feature. For more details see the documentation on the onX feature. -

- Static fields are skipped by these annotations. Also, a @java.beans.ConstructorProperties annotation is added for all constructors with at least 1 argument, which allows bean editor tools to call the generated constructors. @ConstructorProperties is new in Java 1.6, which means that if your code is intended for compilation on Java 1.5, a compiler error will occur. Running on a JVM 1.5 should be no problem (the annotation will be ignored). To suppress the generation of the @ConstructorProperties annotation, add a parameter to your annotation: @AllArgsConstructor(suppressConstructorProperties=true). However, as java 1.5, which has already been end-of-lifed, fades into obscurity, this parameter will eventually be removed. It has also been marked deprecated for this reason. -

- Unlike most other lombok annotations, the existence of an explicit constructor does not stop these annotations from generating their own constructor. This means you can write your own specialized constructor, and let lombok generate the boilerplate ones as well. If a conflict arises (one of your constructors ends up with the same signature as one that lombok generates), a compiler error will occur. -

- - - <@f.snippets name="Constructor" /> - - <@f.confKeys> -
- lombok.anyConstructor.suppressConstructorProperties = [true | false] (default: false) -
- If set to true, then lombok will skip adding a @java.beans.ConstructorProperties to generated constructors. This is useful in android and GWT development where that annotation is not usually available. -
- lombok.[allArgsConstructor|requiredArgsConstructor|noArgsConstructor].flagUsage = [warning | error] (default: not set) -
- Lombok will flag any usage of the relevant annotation (@AllArgsConstructor, @RequiredArgsConstructor or @NoArgsConstructor) as a warning or error if configured. -
- lombok.anyConstructor.flagUsage = [warning | error] (default: not set) -
- Lombok will flag any usage of any of the 3 constructor-generating annotations as a warning or error if configured. -
- - - <@f.smallPrint> -

- Even if a field is explicitly initialized with null, lombok will consider the requirement to avoid null as fulfilled, and will NOT consider the field as a 'required' argument. The assumption is that if you explicitly assign null to a field that you've also marked as @NonNull signals you must know what you're doing. -

- The @java.beans.ConstructorProperties annotation is never generated for a constructor with no arguments. This also explains why @NoArgsConstructor lacks the suppressConstructorProperties annotation method. The generated static factory methods also do not get @ConstructorProperties, as this annotation can only be added to real constructors. -

- @XArgsConstructor can also be used on an enum definition. The generated constructor will always be private, because non-private constructors aren't legal in enums. You don't have to specify AccessLevel.PRIVATE. -

- While suppressConstructorProperties has been marked deprecated in anticipation of a world where all java environments have the @ConstructorProperties annotation available, first GWT 2.2 and Android 2.3.3, which do not (yet) have this annotation, will have to be ancient history before this annotation parameter will be removed. -

- The flagUsage configuration keys do not trigger when a constructor is generated by @Data, @Value or any other lombok annotation. -

- - diff --git a/website2/templates/features/delombok.html b/website2/templates/features/delombok.html deleted file mode 100644 index fc9dfddc..00000000 --- a/website2/templates/features/delombok.html +++ /dev/null @@ -1,61 +0,0 @@ -<#import "_features.html" as f> - -<@f.scaffold title="Delombok" logline=""> - <@f.overview> -

- Normally, lombok adds support for all the lombok features directly to your IDE and compiler by plugging into them.
- However, lombok doesn't cover all tools. For example, lombok cannot plug into javadoc, nor can it plug into the Google Widget Toolkit, both of which run on java sources. Delombok still allows you to use lombok with these tools by preprocessing your java code into java code with all of lombok's transformations already applied. -

- Delombok can of course also help understand what's happening with your source by letting you look at exactly what lombok is doing 'under the hood'. -

- Delombok's standard mode of operation is that it copies an entire directory into another directory, recursively, skipping class files, and applying lombok transformations to any java source files it encounters. -

- Delombok's output format can be configured with command line options (use --format-help for a complete list). A few such options are automatically scanned from input if possible (such as indent). If delombok's formatting is not conforming to your preferred code style, have a look! -

- -

Running delombok on the command line

- -

- Delombok is included in lombok.jar. To use it, all you need to run on the command line is: -

-
java -jar lombok.jar delombok src -d src-delomboked
-

- Which will duplicate the contents of the src directory into the src-delomboked directory, which will be created if it doesn't already exist, but delomboked of course. Delombok on the command line has a few more options; use the --help parameter to see more options. -

- To let delombok print the transformation result of a single java file directly to standard output, you can use: -

-
java -jar lombok.jar delombok -p MyJavaFile.java
-
-

- -

Running delombok in ant

- -

- lombok.jar includes an ant task which can apply delombok for you. For example, to create javadoc for your project, your build.xml file would look something like: -

<target name="javadoc">
-<taskdef classname="lombok.delombok.ant.Tasks$Delombok" classpath="lib/lombok.jar" name="delombok" />
-<mkdir dir="build/src-delomboked" />
-<delombok verbose="true" encoding="UTF-8" to="build/src-delomboked" from="src">
-	<format value="suppressWarnings:skip" />
-</delombok>
-<mkdir dir="build/api" />
-<javadoc sourcepath="build/src-delomboked" defaultexcludes="yes" destdir="build/api" />
-</target>
-

- Instead of a from attribute, you can also nest <fileset> nodes. -

- -

Running delombok in maven

- -

- Anthony Whitford has written a maven plugin for delomboking your source code. -

- -

Limitations

- -

- Delombok tries to preserve your code as much as it can, but comments may move around a little bit, especially comments that are in the middle of a syntax node. For example, any comments appearing in the middle of a list of method modifiers, such as public /*comment*/ static ... will move towards the front of the list of modifiers. In practice, any java source parsing tool will not be affected.
- To keep any changes to your code style to a minimum, delombok just copies a source file directly without changing any of it if the source file contains no lombok transformations. -

- - diff --git a/website2/templates/features/experimental/Accessors.html b/website2/templates/features/experimental/Accessors.html deleted file mode 100644 index 97017dc6..00000000 --- a/website2/templates/features/experimental/Accessors.html +++ /dev/null @@ -1,75 +0,0 @@ -<#import "../_features.html" as f> - -<@f.scaffold title="@Accessors" logline="A more fluent API for getters and setters."> - <@f.history> -

- @Accessors was introduced as experimental feature in lombok v0.11.0. -

- - - <@f.experimental> - - Current status: positive - Currently we feel this feature may move out of experimental status with no or minor changes soon. - - - <@f.overview> -

- The @Accessors annotation is used to configure how lombok generates and looks for getters and setters. -

- By default, lombok follows the bean specification for getters and setters: The getter for a field named pepper is getPepper for example. However, some might like to break with the bean specification in order to end up with nicer looking APIs. @Accessors lets you do this. -

- Some programmers like to use a prefix for their fields, i.e. they write fPepper instead of pepper. We strongly discourage doing this, as you can't unit test the validity of your prefixes, and refactor scripts may turn fields into local variables or method names. Furthermore, your tools (such as your editor) can take care of rendering the identifier in a certain way if you want this information to be instantly visible. Nevertheless, you can list the prefixes that your project uses via @Accessors as well. -

- @Accessors therefore has 3 options: -

-

- The @Accessors annotation is legal on types and fields; the annotation that applies is the one on the field if present, otherwise the one on the class. When a @Accessors annotation on a field is present, any @Accessors annotation also present on that field's type is ignored. -

- - - <@f.snippets name="experimental/Accessors" /> - - <@f.confKeys> -
- lombok.accessors.chain = [true | false] (default: false) -
- If set to true, any class that either doesn't have an @Accessors annotation, or it does, but that annotation does not have an explicit value for the chain parameter, will act as if @Accessors(chain = true) is present. -
- lombok.accessors.fluent = [true | false] (default: false) -
- If set to true, any class that either doesn't have an @Accessors annotation, or it does, but that annotation does not have an explicit value for the fluent parameter, will act as if @Accessors(fluent = true) is present. -
- lombok.accessors.prefix += a field prefix (default: empty list) -
- This is a list property; entries can be added with the += operator. Inherited prefixes from parent config files can be removed with the -= operator. Any class that either doesn't have an @Accessors annotation, or it does, but that annotation does not have an explicit value for the prefix parameter, will act as if @Accessors(prefix = {prefixes listed in configuration}) is present. -
- lombok.accessors.flagUsage = [warning | error] (default: not set) -
- Lombok will flag any usage of @Accessors as a warning or error if configured. -
- - - <@f.smallPrint> -

- The nearest @Accessors annotation is also used for the various methods in lombok that look for getters, such as @EqualsAndHashCode. -

- If a prefix list is provided and a field does not start with one of them, that field is skipped entirely by lombok, and a warning will be generated. -

- - diff --git a/website2/templates/features/experimental/Delegate.html b/website2/templates/features/experimental/Delegate.html deleted file mode 100644 index 265c754a..00000000 --- a/website2/templates/features/experimental/Delegate.html +++ /dev/null @@ -1,59 +0,0 @@ -<#import "../_features.html" as f> - -<@f.scaffold title="@Delegate" logline="Don't lose your composition."> - <@f.history> -

- @Delegate was introduced as feature in lombok v0.10 (the experimental package did not exist yet).
- It was moved to the experimental package in lombok v1.14; the old version from the main lombok package is now deprecated. -

- - - <@f.experimental> - - Current status: negative - Currently we feel this feature will not move out of experimental status anytime soon, and support for this feature may be dropped if future versions of javac or ecj make it difficult to continue to maintain the feature. - - - <@f.overview> -

- Any field or no-argument method can be annotated with @Delegate to let lombok generate delegate methods that forward the call to this field (or the result of invoking this method). -

- Lombok delegates all public methods of the field's type (or method's return type), as well as those of its supertypes except for all methods declared in java.lang.Object. -

- You can pass any number of classes into the @Delegate annotation's types parameter. If you do that, then lombok will delegate all public methods in those types (and their supertypes, except java.lang.Object) instead of looking at the field/method's type. -

- All public non-Object methods that are part of the calculated type(s) are copied, whether or not you also wrote implementations for those methods. That would thus result in duplicate method errors. You can avoid these by using the @Delegate(excludes=SomeType.class) parameter to exclude all public methods in the excluded type(s), and their supertypes. -

- To have very precise control over what is delegated and what isn't, write private inner interfaces with method signatures, then specify these private inner interfaces as types in @Delegate(types=PrivateInnerInterfaceWithIncludesList.class, excludes=SameForExcludes.class). -

- - - <@f.snippets name="experimental/Delegate" /> - - <@f.confKeys> -
- lombok.delegate.flagUsage = [warning | error] (default: not set) -
- Lombok will flag any usage of @Delegate as a warning or error if configured. -
- - - <@f.smallPrint> -

- When passing classes to the annotation's types or excludes parameter, you cannot include generics. This is a limitation of java. Use private inner interfaces or classes that extend the intended type including the generics parameter to work around this problem. -

- When passing classes to the annotation, these classes do not need to be supertypes of the field. See the example. -

- @Delegate cannot be used on static fields or methods. -

- @Delegate cannot be used when the calculated type(s) to delegate / exclude themselves contain @Delegate annotations; in other words, @Delegate will error if you attempt to use it recursively. -

- - diff --git a/website2/templates/features/experimental/ExtensionMethod.html b/website2/templates/features/experimental/ExtensionMethod.html deleted file mode 100644 index ca63bb2e..00000000 --- a/website2/templates/features/experimental/ExtensionMethod.html +++ /dev/null @@ -1,67 +0,0 @@ -<#import "../_features.html" as f> - -<@f.scaffold title="@ExtensionMethod" logline="Annoying API? Fix it yourself: Add new methods to existing types!"> - <@f.history> -

- @ExtensionMethod was introduced as experimental feature in lombok v0.11.2. -

- - - <@f.experimental> - - Current status: hold - Currently we feel this feature will not move out of experimental status anytime soon, but it will not significantly change and support for it is unlikely to be removed in future versions of lombok either. - - - <@f.overview> -

- You can make a class containing a bunch of public, static methods which all take at least 1 parameter. These methods will extend the type of the first parameter, as if they were instance methods, using the @ExtensionMethod feature. -

- For example, if you create public static String toTitleCase(String in) { ... }, you can use the @ExtensionMethod feature to make it look like the java.lang.String class has a method named toTitleCase, which has no arguments. The first argument of the static method fills the role of this in instance methods. -

- All methods that are public, static, and have at least 1 argument whose type is not primitive, are considered extension methods, and each will be injected into the namespace of the type of the first parameter as if they were instance methods. As in the above example, a call that looks like: foo.toTitleCase() is replaced with ClassContainingYourExtensionMethod.toTitleCase(foo);. Note that it is actually not an instant NullPointerException if foo is null - it is passed like any other parameter. -

- You can pass any number of classes to the @ExtensionMethod annotation; they will all be searched for extension methods. These extension methods apply for any code that is in the annotated class. -

- Lombok does not (currently) have any runtime dependencies which means lombok does not (currently) ship with any useful extension methods so you'll have to make your own. However, here's one that might spark your imagination:
-

public class ObjectExtensions {
-	public static <T> or(T object, T ifNull) {
-		return object != null ? object : ifNull;
-	}
-}

- With the above class, if you add @ExtensionMethod(ObjectExtensions.class) to your class definition, you can write:
-
String x = null;
-System.out.println(x.or("Hello, World!"));

- The above code will not fail with a NullPointerException; it will actually output Hello, World! -

- - - <@f.snippets name="experimental/ExtensionMethod" /> - - <@f.confKeys> -
- lombok.extensionMethod.flagUsage = [warning | error] (default: not set) -
- Lombok will flag any usage of @ExtensionMethod as a warning or error if configured. -
- - - <@f.smallPrint> -

- Calls are rewritten to a call to the extension method; the static method itself is not inlined. Therefore, the extension method must be present both at compile and at runtime. -

- Generics is fully applied to figure out extension methods. i.e. if the first parameter of your extension method is List<? extends String>, then any expression that is compatible with that will have your extension method, but other kinds of lists won't. So, a List<Object> won't get it, but a List<String> will. -

- - diff --git a/website2/templates/features/experimental/FieldDefaults.html b/website2/templates/features/experimental/FieldDefaults.html deleted file mode 100644 index 0d4cda9e..00000000 --- a/website2/templates/features/experimental/FieldDefaults.html +++ /dev/null @@ -1,56 +0,0 @@ -<#import "../_features.html" as f> - -<@f.scaffold title="@FieldDefaults" logline="New default field modifiers for the 21st century."> - <@f.history> -

- @FieldDefaults was introduced as experimental feature in lombok v0.11.4. -

- - - <@f.experimental> - - Current status: positive - Currently we feel this feature may move out of experimental status with no or minor changes soon. - - - <@f.overview> -

- The @FieldDefaults annotation can add an access modifier (public, private, or protected) to each field in the annotated class or enum. It can also add final to each field in the annotated class or enum. -

- To add final to each (instance) field, use @FieldDefaults(makeFinal=true). Any non-final field which must remain nonfinal can be annotated with @NonFinal (also in the lombok.experimental package). -

- To add an access modifier to each (instance) field, use @FieldDefaults(level=AccessLevel.PRIVATE). Any field that does not already have an access modifier (i.e. any field that looks like package private access) is changed to have the appropriate access modifier. Any package private field which must remain package private can be annotated with @PackagePrivate (also in the lombok.experimental package). -

- - - <@f.snippets name="experimental/FieldDefaults" /> - - <@f.confKeys> -
- lombok.fieldDefaults.flagUsage = [warning | error] (default: not set) -
- Lombok will flag any usage of @FieldDefaults as a warning or error if configured. -
- lombok.fieldDefautls.defaultPrivate = [true | false] (default: false) -
- (Since 1.16.8) If set to true, every field in every class or enum anywhere in the sources being compiled will be marked as private unless it has an explicit access modifier or the @PackagePrivate annotation, or an explicit @FieldDefaults annotation is present to override this config key. -
- lombok.fieldDefaults.defaultFinal = [true | false] (default: false) -
- (Since 1.16.8) If set to true, every field in every class or enum anywhere in the sources being compiled will be marked as final unless it has the @NonFinal annotation, or an explicit @FieldDefaults annotation is present to override this config key. -
- - - <@f.smallPrint> -

- Like other lombok handlers that touch fields, any field whose name starts with a dollar ($) symbol is skipped entirely. Such a field will not be modified at all. -

- - diff --git a/website2/templates/features/experimental/Helper.html b/website2/templates/features/experimental/Helper.html deleted file mode 100644 index 93b6e2b4..00000000 --- a/website2/templates/features/experimental/Helper.html +++ /dev/null @@ -1,52 +0,0 @@ -<#import "../_features.html" as f> - -<@f.scaffold title="@Helper" logline="With a little help from my friends... Helper methods for java."> - <@f.history> -

- @Helper was introduced as an experimental feature in lombok v1.16.6. -

- - - <@f.experimental> - - Current status: unknown - We don't have enough experience with this feature to make predictions on its future. - - - <@f.overview> -

- This annotation lets you put methods in methods. You might not know this, but you can declare classes inside methods, and the methods in this class can access any (effectively) final local variable or parameter defined and set before the declaration. Unfortunately, to actually call any methods you'd have to make an instance of this method local class first, but that's where @Helper comes in and helps you out! Annotate a method local class with @Helper and it's as if all the methods in that helper class are methods that you can call directly, just as if java had allowed methods to exist inside methods. -

- Normally you'd have to declare an instance of your helper, for example: HelperClass h = new HelperClass(); directly after declaring your helper class, and then call methods in your helper class with h.helperMethod();. With @Helper, both of these things are no longer needed: You do not need to waste a line of code declaring an instance of the helper, and you don't need to prefix all your calls to helper methods with nameOfHelperInstance. -

- - - <@f.snippets name="experimental/Helper" /> - - <@f.confKeys> -
- lombok.helper.flagUsage = [warning | error] (default: not set) -
- Lombok will flag any usage of @Helper as a warning or error if configured. -
- - - <@f.smallPrint> -

- @Helper requires that the helper class has a no-args constructor. A compiler error will be generated if this is not the case. -

- Currently, the instance of your helper that's made under the hood is called $Foo, where Foo is the name of your helper. We might change this in the future; please don't rely on this variable existing. We might even replace this later with a sibling method instead. -

- Please don't rely on this making any sense in the helper method code. You can refer to the real 'this' by using the syntax NameOfMyClass.this. -

- ANY unqualified method call in code that exists below the declaration of the helper method with the same name as any method in the helper is assumed to be a call to the helper. If the arguments don't end up being compatible, you get a compiler error. -

- Unless you're using JDK8 or higher (which introduced the concept of 'effectively final'), you'll have to declare local variables and parameters as final if you wish to refer to them in your method local class. This is a java limitation, not something specific to lombok's @Helper. -

- - diff --git a/website2/templates/features/experimental/UtilityClass.html b/website2/templates/features/experimental/UtilityClass.html deleted file mode 100644 index 4cee3657..00000000 --- a/website2/templates/features/experimental/UtilityClass.html +++ /dev/null @@ -1,44 +0,0 @@ -<#import "../_features.html" as f> - -<@f.scaffold title="@UtilityClass" logline="Utility, metility, wetility! Utility classes for the masses."> - <@f.history> -

- @UtilityClass was introduced as an experimental feature in lombok v1.16.2. -

- - - <@f.experimental> - - Current status: positive - Currently we feel this feature may move out of experimental status with no or minor changes soon. - - - <@f.overview> -

- A utility class is a class that is just a namespace for functions. No instances of it can exist, and all its members are static. For example, java.lang.Math and java.util.Collections are well known utility classes. This annotation automatically turns the annotated class into one. -

- A utility class cannot be instantiated. By marking your class with @UtilityClass, lombok will automatically generate a private constructor that throws an exception, flags as error any explicit constructors you add, and marks the class final. If the class is an inner class, the class is also marked static. -

- All members of a utility class are automatically marked as static. Even fields and inner classes. -

- - - <@f.snippets name="experimental/UtilityClass" /> - - <@f.confKeys> -
- lombok.utilityClass.flagUsage = [warning | error] (default: not set) -
- Lombok will flag any usage of @UtilityClass as a warning or error if configured. -
- - - <@f.smallPrint> -

- There isn't currently any way to create non-static members, or to define your own constructor. If you want to instantiate the utility class, even only as an internal implementation detail, @UtilityClass cannot be used. -

- - diff --git a/website2/templates/features/experimental/Wither.html b/website2/templates/features/experimental/Wither.html deleted file mode 100644 index 9642458b..00000000 --- a/website2/templates/features/experimental/Wither.html +++ /dev/null @@ -1,66 +0,0 @@ -<#import "../_features.html" as f> - -<@f.scaffold title="@Wither" logline="Immutable 'setters' - methods that create a clone but with one changed field."> - <@f.history> -

- @Wither was introduced as experimental feature in lombok v0.11.4. -

- - - <@f.experimental> - - Current status: neutral - More feedback requires on the items in the above list before promotion to the main package is warranted. - - - <@f.overview> -

- The next best alternative to a setter for an immutable property is to construct a clone of the object, but with a new value for this one field. A method to generate this clone is precisely what @Wither generates: a withFieldName(newValue) method which produces a clone except for the new value for the associated field. -

- For example, if you create public class Point { private final int x, y; }, setters make no sense because the fields are final. @Wither can generate a withX(int newXValue) method for you which will return a new point with the supplied value for x and the same value for y. -

- Like @Setter, you can specify an access level in case you want the generated wither to be something other than public:
@Wither(level = AccessLevel.PROTECTED). Also like @Setter, you can also put a @Wither annotation on a type, which means a 'wither' is generated for each field (even non-final fields). -

- To put annotations on the generated method, you can use onMethod=@__({@AnnotationsHere}); to put annotations on the only parameter of a generated wither method, you can use onParam=@__({@AnnotationsHere}). Be careful though! This is an experimental feature. For more details see the documentation on the onX feature. -

- NEW in lombok v1.12.0: javadoc on the field will now be copied to generated withers. Normally, all text is copied, and @param is moved to the wither, whilst @return lines are stripped from the wither's javadoc. Moved means: Deleted from the field's javadoc. It is also possible to define unique text for the wither's javadoc. To do that, you create a 'section' named WITHER. A section is a line in your javadoc containing 2 or more dashes, then the text 'WITHER', followed by 2 or more dashes, and nothing else on the line. If you use sections, @return and @param stripping / copying for that section is no longer done (move the @param line into the section). -

- - - <@f.snippets name="experimental/Wither" /> - - <@f.confKeys> -
- lombok.wither.flagUsage = [warning | error] (default: not set) -
- Lombok will flag any usage of @Wither as a warning or error if configured. -
- - - <@f.smallPrint> -

- Withers cannot be generated for static fields because that makes no sense. -

- Withers can be generated for abstract classes, but this generates an abstract method with the appropriate signature. -

- When applying @Wither to a type, static fields and fields whose name start with a $ are skipped. -

- For generating the method names, the first character of the field, if it is a lowercase character, is title-cased, otherwise, it is left unmodified. Then, with is prefixed. -

- No method is generated if any method already exists with the same name (case insensitive) and same parameter count. For example, withX(int x) will not be generated if there's already a method withX(String... x) even though it is technically possible to make the method. This caveat exists to prevent confusion. If the generation of a method is skipped for this reason, a warning is emitted instead. Varargs count as 0 to N parameters. -

- For boolean fields that start with is immediately followed by a title-case letter, nothing is prefixed to generate the wither name. -

- Any annotations named @NonNull (case insensitive) on the field are interpreted as: This field must not ever hold null. Therefore, these annotations result in an explicit null check in the generated wither. Also, these annotations (as well as any annotation named @Nullable or @CheckForNull) are copied to wither parameter. -

- - diff --git a/website2/templates/features/experimental/index.html b/website2/templates/features/experimental/index.html deleted file mode 100644 index 65cefd4c..00000000 --- a/website2/templates/features/experimental/index.html +++ /dev/null @@ -1,85 +0,0 @@ -<#import "../../_scaffold.html" as main> -<#import "../_features.html" as f> - -<@main.scaffold> - - diff --git a/website2/templates/features/experimental/onX.html b/website2/templates/features/experimental/onX.html deleted file mode 100644 index fd2e7b58..00000000 --- a/website2/templates/features/experimental/onX.html +++ /dev/null @@ -1,62 +0,0 @@ -<#import "../_features.html" as f> - -<@f.scaffold title="onX" logline="Sup dawg, we heard you like annotations, so we put annotations in your annotations so you can annotate while you're annotating."> - <@f.history> -

- onX was introduced as experimental feature in lombok v0.11.8. -

- - - <@f.experimental> - - Current status: uncertain - Currently we feel this feature cannot move out of experimental status. - - - <@f.overview> -

- This feature is considered 'workaround status' - it exists in order to allow users of lombok that cannot work without this feature to have access to it anyway. If we find a better way to implement this feature, or some future java version introduces an alternative strategy, this feature can disappear without a reasonable deprecation period. Also, this feature may not work in future versions of javac. Use at your own discretion. -

- Most annotations that make lombok generate methods or constructors can be configured to also make lombok put custom annotations on elements in the generated code. -

- @Getter, @Setter, and @Wither support the onMethod option, which will put the listed annotations on the generated method. -

- @AllArgsConstructor, @NoArgsConstructor, and @RequiredArgsConstructor support the onConstructor option which will put the listed annotations on the generated constructor. -

- @Setter and @Wither support onParam in addition to onMethod; annotations listed will be put on the only parameter that the generated method has. @EqualsAndHashCode also supports onParam; the listed annotation(s) will be placed on the single parameter of the generated equals method, as well as any generated canEqual method. -

- The syntax is a little strange and depends on the javac you are using.
- On javac7, to use any of the 3 onX features, you must wrap the annotations to be applied to the constructor / method / parameter in @__(@AnnotationGoesHere). To apply multiple annotations, use @__({@Annotation1, @Annotation2}). The annotations can themselves obviously have parameters as well.
- On javac8 and up, you add an underscore after onMethod, onParam, or onConstructor. -

- - - <@f.snippets name="experimental/onX" /> - - <@f.confKeys> -
- lombok.onX.flagUsage = [warning | error] (default: not set) -
- Lombok will flag any usage of onX as a warning or error if configured. -
- - - <@f.smallPrint> -

- The reason of the weird syntax is to make this feature work in javac 7 compilers; the @__ type is an annotation reference to the annotation type __ (double underscore) which doesn't actually exist; this makes javac 7 delay aborting the compilation process due to an error because it is possible an annotation processor will later create the __ type. Instead, lombok applies the annotations and removes the references so that the error will never actually occur. The point is: The __ type must not exist, otherwise the feature does not work. In the rare case that the __ type does exist (and is imported or in the package), you can simply add more underscores. Technically any non-existent type would work, but to maintain consistency and readability and catch erroneous use, lombok considers it an error if the 'wrapper' annotation is anything but a series of underscores. -

- In javac8, the above feature should work but due to a bug in javac8 it does not. However, starting in javac8, if the parameter name does not exist in the annotation type, compilation proceeds to a phase where lombok can fix it. -

- To reiterate: This feature can disappear at any time; if you use this feature, be prepared to adjust your code when we find a nicer way of implementing this feature, or, if a future version of javac forces us to remove this feature entirely with no alternative. -

- The onX parameter is not legal on any type-wide variant. For example, a @Getter annotation on a class does not support onMethod. -

- - diff --git a/website2/templates/features/experimental/var.html b/website2/templates/features/experimental/var.html deleted file mode 100644 index fa35ac5e..00000000 --- a/website2/templates/features/experimental/var.html +++ /dev/null @@ -1,37 +0,0 @@ -<#import "../_features.html" as f> - -<@f.scaffold title="var" logline="Modifiable local variables with a type inferred by assigning value."> - <@f.history> -

- var was introduced in lombok 1.16.12 as experimental feature. -

- - - <@f.experimental> - - Current status: uncertain – Currently we feel this feature cannot move out of experimental status. - - - <@f.overview> -

- var works exactly like val, except the local variable is not marked as final. -

- The type is still entirely derived from the mandatory initializer expression, and any further assignments, while now legal (because the variable is no longer final), aren't looked at to determine the appropriate type.
- For example, var x = "Hello"; x = Color.RED; does not work; the type of x will be inferred to be java.lang.String and thus, the x = Color.RED assignment will fail. If the type of x was inferred to be java.lang.Object this code would have compiled, but that's not howvar works. -

- - - <@f.confKeys> -
- lombok.var.flagUsage = [warning | error] (default: not set) -
- Lombok will flag any usage of var as a warning or error if configured. -
- - diff --git a/website2/templates/features/index.html b/website2/templates/features/index.html deleted file mode 100644 index da3db634..00000000 --- a/website2/templates/features/index.html +++ /dev/null @@ -1,87 +0,0 @@ -<#import "../_scaffold.html" as main> - -<@main.scaffold> - - diff --git a/website2/templates/features/log.html b/website2/templates/features/log.html deleted file mode 100644 index 2854e896..00000000 --- a/website2/templates/features/log.html +++ /dev/null @@ -1,106 +0,0 @@ -<#import "_features.html" as f> - -<@f.scaffold title="@Log (and friends)" logline="Captain's Log, stardate 24435.7: "What was that line again?""> - <@f.history> -

- The various @Log variants were added in lombok v0.10. - NEW in lombok 0.10: You can annotate any class with a log annotation to let lombok generate a logger field.
- The logger is named log and the field's type depends on which logger you have selected. -

- - - <@f.overview> -

- You put the variant of @Log on your class (whichever one applies to the logging system you use); you then have a static final log field, initialized to the name of your class, which you can then use to write log statements. -

- There are several choices available:
-

-
- @CommonsLog -
- Creates private static final org.apache.commons.logging.Log log = org.apache.commons.logging.LogFactory.getLog(LogExample.class); -
- @JBossLog -
- Creates private static final org.jboss.logging.Logger log = org.jboss.logging.Logger.getLogger(LogExample.class); -
- @Log -
- Creates private static final java.util.logging.Logger log = java.util.logging.Logger.getLogger(LogExample.class.getName()); -
- @Log4j -
- Creates private static final org.apache.log4j.Logger log = org.apache.log4j.Logger.getLogger(LogExample.class); -
- @Log4j2 -
- Creates private static final org.apache.logging.log4j.Logger log = org.apache.logging.log4j.LogManager.getLogger(LogExample.class); -
- @Slf4j -
- Creates private static final org.slf4j.Logger log = org.slf4j.LoggerFactory.getLogger(LogExample.class); -
- @XSlf4j -
- Creates private static final org.slf4j.ext.XLogger log = org.slf4j.ext.XLoggerFactory.getXLogger(LogExample.class); -
-
-

- By default, the topic (or name) of the logger will be the class name of the class annotated with the @Log annotation. This can be customised by specifying the topic parameter. For example: @XSlf4j(topic="reporting"). -

- - - <@f.snippets name="Log" /> - - <@f.confKeys> -
- lombok.log.fieldName = an identifier (default: log). -
- The generated logger fieldname is by default 'log', but you can change it to a different name with this setting. -
- lombok.log.fieldIsStatic = [true | false] (default: true) -
- Normally the generated logger is a static field. By setting this key to false, the generated field will be an instance field instead. -
- lombok.log.flagUsage = [warning | error] (default: not set) -
- Lombok will flag any usage of any of the various log annotations as a warning or error if configured. -
- lombok.log.apacheCommons.flagUsage = [warning | error] (default: not set) -
- Lombok will flag any usage of @lombok.extern.apachecommons.CommonsLog as a warning or error if configured. -
- lombok.log.javaUtilLogging.flagUsage = [warning | error] (default: not set) -
- Lombok will flag any usage of @lombok.extern.java.Log as a warning or error if configured. -
- lombok.log.jbosslog.flagUsage = [warning | error] (default: not set) -
- Lombok will flag any usage of @lombok.extern.jbosslog.JBossLog as a warning or error if configured. -
- lombok.log.log4j.flagUsage = [warning | error] (default: not set) -
- Lombok will flag any usage of @lombok.extern.log4j.Log4j as a warning or error if configured. -
- lombok.log.log4j2.flagUsage = [warning | error] (default: not set) -
- Lombok will flag any usage of @lombok.extern.log4j.Log4j2 as a warning or error if configured. -
- lombok.log.slf4j.flagUsage = [warning | error] (default: not set) -
- Lombok will flag any usage of @lombok.extern.slf4j.Slf4j as a warning or error if configured. -
- lombok.log.xslf4j.flagUsage = [warning | error] (default: not set) -
- Lombok will flag any usage of @lombok.extern.slf4j.XSlf4j as a warning or error if configured. -
- - - <@f.smallPrint> -

- If a field called log already exists, a warning will be emitted and no code will be generated. -

- A future feature of lombok's diverse log annotations is to find calls to the logger field and, if the chosen logging framework supports it and the log level can be compile-time determined from the log call, guard it with an if statement. This way if the log statement ends up being ignored, the potentially expensive calculation of the log string is avoided entirely. This does mean that you should NOT put any side-effects in the expression that you log. -

- - diff --git a/website2/templates/features/val.html b/website2/templates/features/val.html deleted file mode 100644 index 32a8ffdf..00000000 --- a/website2/templates/features/val.html +++ /dev/null @@ -1,36 +0,0 @@ -<#import "_features.html" as f> - -<@f.scaffold title="val" logline="Finally! Hassle-free final local variables."> - <@f.history> -

- val was introduced in lombok 0.10. -

- - <@f.overview> -

- You can use val as the type of a local variable declaration instead of actually writing the type. When you do this, the type will be inferred from the initializer expression. The local variable will also be made final. This feature works on local variables and on foreach loops only, not on fields. The initializer expression is required. -

- val is actually a 'type' of sorts, and exists as a real class in the lombok package. You must import it for val to work (or use lombok.val as the type). The existence of this type on a local variable declaration triggers both the adding of the final keyword as well as copying the type of the initializing expression which overwrites the 'fake' val type. -

- WARNING: This feature does not currently work in NetBeans. -

- - - <@f.snippets name="val" /> - - <@f.confKeys> -
- lombok.val.flagUsage = [warning | error] (default: not set) -
- Lombok will flag any usage of val as a warning or error if configured. -
- - - <@f.smallPrint> -

- For compound types, the most common superclass is inferred, not any shared interfaces. For example, bool ? new HashSet() : new ArrayList() is an expression with a compound type: The result is both AbstractCollection as well as Serializable. The type inferred will be AbstractCollection, as that is a class, whereas Serializable is an interface. -

- In ambiguous cases, such as when the initializer expression is null, java.lang.Object is inferred. -

- - -- cgit