/forgerock/opendj-b2.6/src/server/org/opends/server/schema/ |
H A D | CaseExactIA5SubstringMatchingRule.java | 222 * @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 D | CaseExactSubstringMatchingRule.java | 185 * @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 D | CaseIgnoreIA5SubstringMatchingRule.java | 221 * @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 D | CaseIgnoreListSubstringMatchingRule.java | 198 * @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 D | CaseIgnoreSubstringMatchingRule.java | 185 * @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 D | NumericStringSubstringMatchingRule.java | 197 * @param substring The value fragment to be normalized. 205 public ByteString normalizeSubstring(ByteSequence substring) argument 208 return normalizeValue(substring);
|
H A D | OctetStringSubstringMatchingRule.java | 45 * 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 D | TelephoneNumberSubstringMatchingRule.java | 175 * @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 D | SubstringMatchingRule.java | 38 * 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 D | SubstringMatchingRule.java | 39 * 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 D | CaseExactIA5SubstringMatchingRule.java | 221 * @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 D | CaseExactSubstringMatchingRule.java | 184 * @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 D | CaseIgnoreIA5SubstringMatchingRule.java | 220 * @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 D | CaseIgnoreListSubstringMatchingRule.java | 197 * @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 D | CaseIgnoreSubstringMatchingRule.java | 184 * @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 D | NumericStringSubstringMatchingRule.java | 196 * @param substring The value fragment to be normalized. 204 public ByteString normalizeSubstring(ByteSequence substring) argument 207 return normalizeValue(substring);
|
H A D | OctetStringSubstringMatchingRule.java | 44 * 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 D | TelephoneNumberSubstringMatchingRule.java | 174 * @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 D | SubstringMatchingRule.java | 39 * 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 D | CaseExactIA5SubstringMatchingRule.java | 222 * @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 D | CaseExactSubstringMatchingRule.java | 185 * @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 D | CaseIgnoreIA5SubstringMatchingRule.java | 221 * @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 D | CaseIgnoreListSubstringMatchingRule.java | 198 * @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 D | CaseIgnoreSubstringMatchingRule.java | 185 * @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 D | NumericStringSubstringMatchingRule.java | 197 * @param substring The value fragment to be normalized. 205 public ByteString normalizeSubstring(ByteSequence substring) argument 208 return normalizeValue(substring);
|