From 4243bc26103da971ee14fa2e99e3f88e88cf8b5c Mon Sep 17 00:00:00 2001 From: Reinier Zwitserloot Date: Wed, 29 Jul 2009 01:52:54 +0200 Subject: Removed small print which was covering gimmies already covered in @ToString, @EqualsAndHashCode, and @Getter / @Setter documentation. --- website/features/Data.html | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) (limited to 'website') diff --git a/website/features/Data.html b/website/features/Data.html index ee81405a..c39eb3f5 100644 --- a/website/features/Data.html +++ b/website/features/Data.html @@ -60,16 +60,8 @@

Small print

-

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

- For a general idea of how lombok generated the equals, hashCode, and toString methods, check the example after. -

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

+

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