Searched defs:substring (Results 1 - 25 of 101) sorted by relevance

12345

/forgerock/opendj-b2.6/src/server/org/opends/server/schema/
H A DCaseExactIA5SubstringMatchingRule.java222 * @param substring The value fragment to be normalized.
230 public ByteString normalizeSubstring(ByteSequence substring) argument
233 // In this case, the process for normalizing a substring is the same as
237 buffer.append(substring.toString());
242 if (substring.length() > 0)
251 return substring.toByteString();
275 substring.toString(), String.valueOf(c));
H A DCaseExactSubstringMatchingRule.java185 * @param substring The value fragment to be normalized.
193 public ByteString normalizeSubstring(ByteSequence substring) argument
196 // In this case, the process for normalizing a substring is the same as
200 prepareUnicode(buffer, substring, false, NO_CASE_FOLD);
205 if (substring.length() > 0)
214 return substring.toByteString();
H A DCaseIgnoreIA5SubstringMatchingRule.java221 * @param substring The value fragment to be normalized.
229 public ByteString normalizeSubstring(ByteSequence substring) argument
232 // In this case, the process for normalizing a substring is the same as
236 prepareUnicode(buffer, substring, false, CASE_FOLD);
241 if (substring.length() > 0)
250 return substring.toByteString();
274 substring.toString(), String.valueOf(c));
H A DCaseIgnoreListSubstringMatchingRule.java198 * @param substring The value fragment to be normalized.
206 public ByteString normalizeSubstring(ByteSequence substring) argument
209 // In this case, the process for normalizing a substring is the same as
213 prepareUnicode(buffer, substring, false, CASE_FOLD);
218 if (substring.length() > 0)
227 return substring.toByteString();
H A DCaseIgnoreSubstringMatchingRule.java185 * @param substring The value fragment to be normalized.
193 public ByteString normalizeSubstring(ByteSequence substring) argument
196 // In this case, the process for normalizing a substring is the same as
200 prepareUnicode(buffer, substring, false, CASE_FOLD);
205 if (substring.length() > 0)
214 return substring.toByteString();
H A DNumericStringSubstringMatchingRule.java197 * @param substring The value fragment to be normalized.
205 public ByteString normalizeSubstring(ByteSequence substring) argument
208 return normalizeValue(substring);
H A DOctetStringSubstringMatchingRule.java45 * X.520. It will be used as the default substring matching rule for the binary
152 * @param substring The value fragment to be normalized.
160 public ByteString normalizeSubstring(ByteSequence substring) argument
164 return substring.toByteString();
H A DTelephoneNumberSubstringMatchingRule.java175 * @param substring The value fragment to be normalized.
183 public ByteString normalizeSubstring(ByteSequence substring) argument
186 // In this case, the logic used to normalize a substring is identical to the
188 ByteString value = normalizeValue(substring);
/forgerock/opendj2/src/server/org/opends/server/api/
H A DSubstringMatchingRule.java38 * rule used for substring matching.
53 * @param substring The value fragment to be normalized.
62 ByteSequence substring) throws DirectoryException;
67 * Determines whether the provided value matches the given substring
68 * filter components. Note that any of the substring filter
73 * compare the substring components.
74 * @param subInitial The normalized substring value fragment
77 * @param subAnyElements The normalized substring value fragments
80 * @param subFinal The normalized substring value fragment
85 * substring component
61 normalizeSubstring( ByteSequence substring) argument
[all...]
/forgerock/opendj-b2.6/src/server/org/opends/server/api/
H A DSubstringMatchingRule.java39 * rule used for substring matching.
54 * @param substring The value fragment to be normalized.
63 ByteSequence substring) throws DirectoryException;
68 * Determines whether the provided value matches the given substring
69 * filter components. Note that any of the substring filter
74 * compare the substring components.
75 * @param subInitial The normalized substring value fragment
78 * @param subAnyElements The normalized substring value fragments
81 * @param subFinal The normalized substring value fragment
86 * substring component
62 normalizeSubstring( ByteSequence substring) argument
[all...]
/forgerock/opendj2/src/server/org/opends/server/schema/
H A DCaseExactIA5SubstringMatchingRule.java221 * @param substring The value fragment to be normalized.
229 public ByteString normalizeSubstring(ByteSequence substring) argument
232 // In this case, the process for normalizing a substring is the same as
236 buffer.append(substring.toString());
241 if (substring.length() > 0)
250 return substring.toByteString();
274 substring.toString(), String.valueOf(c));
H A DCaseExactSubstringMatchingRule.java184 * @param substring The value fragment to be normalized.
192 public ByteString normalizeSubstring(ByteSequence substring) argument
195 // In this case, the process for normalizing a substring is the same as
199 prepareUnicode(buffer, substring, false, NO_CASE_FOLD);
204 if (substring.length() > 0)
213 return substring.toByteString();
H A DCaseIgnoreIA5SubstringMatchingRule.java220 * @param substring The value fragment to be normalized.
228 public ByteString normalizeSubstring(ByteSequence substring) argument
231 // In this case, the process for normalizing a substring is the same as
235 prepareUnicode(buffer, substring, false, CASE_FOLD);
240 if (substring.length() > 0)
249 return substring.toByteString();
273 substring.toString(), String.valueOf(c));
H A DCaseIgnoreListSubstringMatchingRule.java197 * @param substring The value fragment to be normalized.
205 public ByteString normalizeSubstring(ByteSequence substring) argument
208 // In this case, the process for normalizing a substring is the same as
212 prepareUnicode(buffer, substring, false, CASE_FOLD);
217 if (substring.length() > 0)
226 return substring.toByteString();
H A DCaseIgnoreSubstringMatchingRule.java184 * @param substring The value fragment to be normalized.
192 public ByteString normalizeSubstring(ByteSequence substring) argument
195 // In this case, the process for normalizing a substring is the same as
199 prepareUnicode(buffer, substring, false, CASE_FOLD);
204 if (substring.length() > 0)
213 return substring.toByteString();
H A DNumericStringSubstringMatchingRule.java196 * @param substring The value fragment to be normalized.
204 public ByteString normalizeSubstring(ByteSequence substring) argument
207 return normalizeValue(substring);
H A DOctetStringSubstringMatchingRule.java44 * X.520. It will be used as the default substring matching rule for the binary
151 * @param substring The value fragment to be normalized.
159 public ByteString normalizeSubstring(ByteSequence substring) argument
163 return substring.toByteString();
H A DTelephoneNumberSubstringMatchingRule.java174 * @param substring The value fragment to be normalized.
182 public ByteString normalizeSubstring(ByteSequence substring) argument
185 // In this case, the logic used to normalize a substring is identical to the
187 ByteString value = normalizeValue(substring);
/forgerock/opendj2.6.2/src/server/org/opends/server/api/
H A DSubstringMatchingRule.java39 * rule used for substring matching.
54 * @param substring The value fragment to be normalized.
63 ByteSequence substring) throws DirectoryException;
68 * Determines whether the provided value matches the given substring
69 * filter components. Note that any of the substring filter
74 * compare the substring components.
75 * @param subInitial The normalized substring value fragment
78 * @param subAnyElements The normalized substring value fragments
81 * @param subFinal The normalized substring value fragment
86 * substring component
62 normalizeSubstring( ByteSequence substring) argument
[all...]
/forgerock/opendj2.6.2/src/server/org/opends/server/schema/
H A DCaseExactIA5SubstringMatchingRule.java222 * @param substring The value fragment to be normalized.
230 public ByteString normalizeSubstring(ByteSequence substring) argument
233 // In this case, the process for normalizing a substring is the same as
237 buffer.append(substring.toString());
242 if (substring.length() > 0)
251 return substring.toByteString();
275 substring.toString(), String.valueOf(c));
H A DCaseExactSubstringMatchingRule.java185 * @param substring The value fragment to be normalized.
193 public ByteString normalizeSubstring(ByteSequence substring) argument
196 // In this case, the process for normalizing a substring is the same as
200 prepareUnicode(buffer, substring, false, NO_CASE_FOLD);
205 if (substring.length() > 0)
214 return substring.toByteString();
H A DCaseIgnoreIA5SubstringMatchingRule.java221 * @param substring The value fragment to be normalized.
229 public ByteString normalizeSubstring(ByteSequence substring) argument
232 // In this case, the process for normalizing a substring is the same as
236 prepareUnicode(buffer, substring, false, CASE_FOLD);
241 if (substring.length() > 0)
250 return substring.toByteString();
274 substring.toString(), String.valueOf(c));
H A DCaseIgnoreListSubstringMatchingRule.java198 * @param substring The value fragment to be normalized.
206 public ByteString normalizeSubstring(ByteSequence substring) argument
209 // In this case, the process for normalizing a substring is the same as
213 prepareUnicode(buffer, substring, false, CASE_FOLD);
218 if (substring.length() > 0)
227 return substring.toByteString();
H A DCaseIgnoreSubstringMatchingRule.java185 * @param substring The value fragment to be normalized.
193 public ByteString normalizeSubstring(ByteSequence substring) argument
196 // In this case, the process for normalizing a substring is the same as
200 prepareUnicode(buffer, substring, false, CASE_FOLD);
205 if (substring.length() > 0)
214 return substring.toByteString();
H A DNumericStringSubstringMatchingRule.java197 * @param substring The value fragment to be normalized.
205 public ByteString normalizeSubstring(ByteSequence substring) argument
208 return normalizeValue(substring);

Completed in 165 milliseconds

12345