We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Using solid principles is quite important to us. A brilliant guide to them can be found here.
We generally emphasize the principles shown in the book Effective Java
"Null sucks." -Doug Lea "I call it my billion-dollar mistake." - Sir C. A. R. Hoare, on his invention of the null reference
"Null sucks." -Doug Lea
"I call it my billion-dollar mistake." - Sir C. A. R. Hoare, on his invention of the null reference
All parameters of public methods that may not take in a null value must be annotated with lombok's @NonNull.
All public methods that can return a nullable value must return an optional instead. A reference to the java.lang.Optional can be found here
All parameters that might take in a null value must be annotated with JetBrains @Nullable annotation.