MinLength Annotation

@MinLength

The @MinLength annotation may be applied to fields annotated with @Option and @Arguments to limit the length of the value provided e.g.

@Option(name = "--reference", arity = 1)
@MinLength(length = 5)
private String reference;

Restricts the --reference option to values of at least 5 characters.

If you want to restrict the minimum length of a value then use the @MaxLength annotation. For exact length restrictions use the @ExactLength annotation.


Improving this Documentation

This documentation is itself open source and lives in GitHub under the docs/ directory.

I am not a professional technical writer and as the developer of this software I can often make assumptions of knowledge that you as a user reading this may not have. Improvements to the documentation are always welcome, if you have suggestions for the documentation please submit pull requests to the main branch.