Working docs

This commit is contained in:
Marcin Grzejszczak
2019-07-25 14:40:21 +02:00
parent 66a71e72a4
commit 3d89adcf88
34 changed files with 3000 additions and 5477 deletions

View File

@@ -21,6 +21,7 @@ package org.springframework.cloud.contract.spec.internal;
*/
interface RegexCreatingProperty<T extends DslProperty> {
// tag::regex_creating_props[]
T anyAlphaUnicode();
T anyAlphaNumeric();
@@ -62,5 +63,6 @@ interface RegexCreatingProperty<T extends DslProperty> {
T anyNonEmptyString();
T anyOf(String... values);
// end::regex_creating_props[]
}