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 426a8e7 commit 256875cCopy full SHA for 256875c
README.md
@@ -175,15 +175,31 @@ fun instantiateEntityA(){
175
))
176
}
177
````
178
+
179
+## Trim
180
181
+The @Trim annotation can be used on methods that return a String value and is used to trim the content of the field
182
183
+````
184
+interface EntityA {
185
+ @Trim
186
+ fun getStringVal():String?
187
+}
188
189
190
191
## Development
192
193
### Release
194
195
Releases are triggered locally. Just a tag will be pushed and CI pipelines take care of the rest.
196
197
#### Major
198
199
Run `./gradlew final -x sendReleaseEmail -Prelease.scope=major` locally.
200
201
#### Minor
202
203
Run `./gradlew final -x sendReleaseEmail -Prelease.scope=minor` locally.
204
205
#### Patch
0 commit comments