30
30
public final class StringMatcher extends com .google .api .client .json .GenericJson {
31
31
32
32
/**
33
- * The input string must have the substring specified here. Note: empty contains match is not
34
- * allowed, please use regex instead. Examples: * ``abc`` matches the value ``xyz.abc.def``
33
+ * The input string must have the substring specified here. .. note:: Empty contains match is not
34
+ * allowed, please use ``safe_regex`` instead. Examples: * ``abc`` matches the value
35
+ * ``xyz.abc.def``
35
36
* The value may be {@code null}.
36
37
*/
37
38
@ com .google .api .client .util .Key
@@ -53,17 +54,17 @@ public final class StringMatcher extends com.google.api.client.json.GenericJson
53
54
private java .lang .String exact ;
54
55
55
56
/**
56
- * If true, indicates the exact/prefix/suffix/contains matching should be case insensitive. This
57
- * has no effect for the safe_regex match. For example, the matcher ``data`` will match both input
58
- * string ``Data`` and ``data`` if set to true.
57
+ * If `` true`` , indicates the exact/prefix/suffix/contains matching should be case insensitive.
58
+ * This has no effect for the `` safe_regex`` match. For example, the matcher ``data`` will match
59
+ * both input string ``Data`` and ``data`` if this option is set to `` true`` .
59
60
* The value may be {@code null}.
60
61
*/
61
62
@ com .google .api .client .util .Key
62
63
private java .lang .Boolean ignoreCase ;
63
64
64
65
/**
65
- * The input string must have the prefix specified here. Note: empty prefix is not allowed, please
66
- * use regex instead. Examples: * ``abc`` matches the value ``abc.xyz``
66
+ * The input string must have the prefix specified here. .. note:: Empty prefix match is not
67
+ * allowed, please use ``safe_regex`` instead. Examples: * ``abc`` matches the value ``abc.xyz``
67
68
* The value may be {@code null}.
68
69
*/
69
70
@ com .google .api .client .util .Key
@@ -77,25 +78,27 @@ public final class StringMatcher extends com.google.api.client.json.GenericJson
77
78
private RegexMatcher safeRegex ;
78
79
79
80
/**
80
- * The input string must have the suffix specified here. Note: empty prefix is not allowed, please
81
- * use regex instead. Examples: * ``abc`` matches the value ``xyz.abc``
81
+ * The input string must have the suffix specified here. .. note:: Empty suffix match is not
82
+ * allowed, please use ``safe_regex`` instead. Examples: * ``abc`` matches the value ``xyz.abc``
82
83
* The value may be {@code null}.
83
84
*/
84
85
@ com .google .api .client .util .Key
85
86
private java .lang .String suffix ;
86
87
87
88
/**
88
- * The input string must have the substring specified here. Note: empty contains match is not
89
- * allowed, please use regex instead. Examples: * ``abc`` matches the value ``xyz.abc.def``
89
+ * The input string must have the substring specified here. .. note:: Empty contains match is not
90
+ * allowed, please use ``safe_regex`` instead. Examples: * ``abc`` matches the value
91
+ * ``xyz.abc.def``
90
92
* @return value or {@code null} for none
91
93
*/
92
94
public java .lang .String getContains () {
93
95
return contains ;
94
96
}
95
97
96
98
/**
97
- * The input string must have the substring specified here. Note: empty contains match is not
98
- * allowed, please use regex instead. Examples: * ``abc`` matches the value ``xyz.abc.def``
99
+ * The input string must have the substring specified here. .. note:: Empty contains match is not
100
+ * allowed, please use ``safe_regex`` instead. Examples: * ``abc`` matches the value
101
+ * ``xyz.abc.def``
99
102
* @param contains contains or {@code null} for none
100
103
*/
101
104
public StringMatcher setContains (java .lang .String contains ) {
@@ -140,19 +143,19 @@ public StringMatcher setExact(java.lang.String exact) {
140
143
}
141
144
142
145
/**
143
- * If true, indicates the exact/prefix/suffix/contains matching should be case insensitive. This
144
- * has no effect for the safe_regex match. For example, the matcher ``data`` will match both input
145
- * string ``Data`` and ``data`` if set to true.
146
+ * If `` true`` , indicates the exact/prefix/suffix/contains matching should be case insensitive.
147
+ * This has no effect for the `` safe_regex`` match. For example, the matcher ``data`` will match
148
+ * both input string ``Data`` and ``data`` if this option is set to `` true`` .
146
149
* @return value or {@code null} for none
147
150
*/
148
151
public java .lang .Boolean getIgnoreCase () {
149
152
return ignoreCase ;
150
153
}
151
154
152
155
/**
153
- * If true, indicates the exact/prefix/suffix/contains matching should be case insensitive. This
154
- * has no effect for the safe_regex match. For example, the matcher ``data`` will match both input
155
- * string ``Data`` and ``data`` if set to true.
156
+ * If `` true`` , indicates the exact/prefix/suffix/contains matching should be case insensitive.
157
+ * This has no effect for the `` safe_regex`` match. For example, the matcher ``data`` will match
158
+ * both input string ``Data`` and ``data`` if this option is set to `` true`` .
156
159
* @param ignoreCase ignoreCase or {@code null} for none
157
160
*/
158
161
public StringMatcher setIgnoreCase (java .lang .Boolean ignoreCase ) {
@@ -161,17 +164,17 @@ public StringMatcher setIgnoreCase(java.lang.Boolean ignoreCase) {
161
164
}
162
165
163
166
/**
164
- * The input string must have the prefix specified here. Note: empty prefix is not allowed, please
165
- * use regex instead. Examples: * ``abc`` matches the value ``abc.xyz``
167
+ * The input string must have the prefix specified here. .. note:: Empty prefix match is not
168
+ * allowed, please use ``safe_regex`` instead. Examples: * ``abc`` matches the value ``abc.xyz``
166
169
* @return value or {@code null} for none
167
170
*/
168
171
public java .lang .String getPrefix () {
169
172
return prefix ;
170
173
}
171
174
172
175
/**
173
- * The input string must have the prefix specified here. Note: empty prefix is not allowed, please
174
- * use regex instead. Examples: * ``abc`` matches the value ``abc.xyz``
176
+ * The input string must have the prefix specified here. .. note:: Empty prefix match is not
177
+ * allowed, please use ``safe_regex`` instead. Examples: * ``abc`` matches the value ``abc.xyz``
175
178
* @param prefix prefix or {@code null} for none
176
179
*/
177
180
public StringMatcher setPrefix (java .lang .String prefix ) {
@@ -197,17 +200,17 @@ public StringMatcher setSafeRegex(RegexMatcher safeRegex) {
197
200
}
198
201
199
202
/**
200
- * The input string must have the suffix specified here. Note: empty prefix is not allowed, please
201
- * use regex instead. Examples: * ``abc`` matches the value ``xyz.abc``
203
+ * The input string must have the suffix specified here. .. note:: Empty suffix match is not
204
+ * allowed, please use ``safe_regex`` instead. Examples: * ``abc`` matches the value ``xyz.abc``
202
205
* @return value or {@code null} for none
203
206
*/
204
207
public java .lang .String getSuffix () {
205
208
return suffix ;
206
209
}
207
210
208
211
/**
209
- * The input string must have the suffix specified here. Note: empty prefix is not allowed, please
210
- * use regex instead. Examples: * ``abc`` matches the value ``xyz.abc``
212
+ * The input string must have the suffix specified here. .. note:: Empty suffix match is not
213
+ * allowed, please use ``safe_regex`` instead. Examples: * ``abc`` matches the value ``xyz.abc``
211
214
* @param suffix suffix or {@code null} for none
212
215
*/
213
216
public StringMatcher setSuffix (java .lang .String suffix ) {
0 commit comments