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.
1 parent b0e9ec0 commit a9c7ef9Copy full SHA for a9c7ef9
README.md
@@ -3,6 +3,9 @@ A rule based validator developed for easy use with the Spring Boot framework.
3
4
- *Extendable*: You can always add custom rules
5
6
+## Table of contents
7
+[Adding dependency](#adding-dependency)
8
+
9
## Adding dependency
10
To use the validator add the following dependency to your `pom.xml`.
11
```xml
@@ -120,7 +123,13 @@ string(field)
120
123
121
124
---
122
125
126
+### `number` rules
127
128
+#### Usage
129
+The following snippet returns an instance of the `NumberRuleBuilder` class.
130
+```java
131
+number(field)
132
+```
133
134
## Custom rules
135
You can easily extend the functionality of the validator by defining custom rules. If you need a specific Regex and don't
0 commit comments