DOC

com.faceture : groovy-params-checker

Maven & Gradle

Aug 23, 2014
0 stars

GroovyParamsChecker · Automatic Groovy parameter checker. How to use: 1. Annotate your Groovy classes with @ParamsNotNullNotEmpty; 2. At compile time, code will be added into each of your methods to check each parameter to make sure it is not null and in the case of Collections, Maps and Strings, it is not empty; 3. At run time, if a parameter is null or empty, it will throw an IllegalArgumentException with details about the null or empty parameter. To disable the annotation at compile time, set the ParamsNotNullNotEmpty.NoOpMode flag to true.

Table Of Contents

Latest Version

Download com.faceture : groovy-params-checker Javadoc & API Documentation - Latest Versions:

All Versions

Download com.faceture : groovy-params-checker Javadoc & API Documentation - All Versions:

Version Size Javadoc Updated
1.0.x

How to open Javadoc JAR file in web browser

  1. Rename the file groovy-params-checker-1.0.28-javadoc.jar to groovy-params-checker-1.0.28-javadoc.zip
  2. Use your favourite unzip tool (WinRAR / WinZIP) to extract it, now you have a folder groovy-params-checker-1.0.28-javadoc
  3. Double click index.html will open the index page on your default web browser.

How to generate Javadoc from a source JAR?

Running the command javadoc:

javadoc --ignore-source-errors -encoding UTF-8 -sourcepath "groovy-params-checker-1.0.28-sources.jar" -d "groovy-params-checker-1.0.28-javadoc" -subpackages 

Advertisement