Lines Matching refs:rawAttributeType

88   private final String rawAttributeType;
120 * @param rawAttributeType The raw, unprocessed attribute type.
127 private MatchedValuesFilter(byte matchType, String rawAttributeType,
133 this.rawAttributeType = rawAttributeType;
146 * @param rawAttributeType The raw, unprocessed attribute type.
152 String rawAttributeType,
155 Reject.ifNull(rawAttributeType,rawAssertionValue);
157 return new MatchedValuesFilter(EQUALITY_MATCH_TYPE, rawAttributeType,
176 String rawAttributeType = attributeType.getNameOrOID();
179 new MatchedValuesFilter(EQUALITY_MATCH_TYPE, rawAttributeType,
192 * @param rawAttributeType The raw, unprocessed attribute type.
200 String rawAttributeType,
205 Reject.ifNull(rawAttributeType);
206 return new MatchedValuesFilter(SUBSTRINGS_TYPE, rawAttributeType, null,
229 String rawAttributeType = attributeType.getNameOrOID();
232 new MatchedValuesFilter(SUBSTRINGS_TYPE, rawAttributeType, null,
244 * @param rawAttributeType The raw, unprocessed attribute type.
250 String rawAttributeType,
253 Reject.ifNull(rawAttributeType, rawAssertionValue);
255 return new MatchedValuesFilter(GREATER_OR_EQUAL_TYPE, rawAttributeType,
275 String rawAttributeType = attributeType.getNameOrOID();
278 new MatchedValuesFilter(GREATER_OR_EQUAL_TYPE, rawAttributeType,
291 * @param rawAttributeType The raw, unprocessed attribute type.
297 String rawAttributeType,
300 Reject.ifNull(rawAttributeType, rawAssertionValue);
301 return new MatchedValuesFilter(LESS_OR_EQUAL_TYPE, rawAttributeType,
321 String rawAttributeType = attributeType.getNameOrOID();
324 new MatchedValuesFilter(LESS_OR_EQUAL_TYPE, rawAttributeType,
337 * @param rawAttributeType The raw, unprocessed attribute type.
341 public static MatchedValuesFilter createPresentFilter(String rawAttributeType)
343 Reject.ifNull(rawAttributeType) ;
344 return new MatchedValuesFilter(PRESENT_TYPE, rawAttributeType, null, null,
361 String rawAttributeType = attributeType.getNameOrOID();
364 new MatchedValuesFilter(PRESENT_TYPE, rawAttributeType, null, null,
376 * @param rawAttributeType The raw, unprocessed attribute type.
382 String rawAttributeType,
385 Reject.ifNull(rawAttributeType,rawAssertionValue);
387 return new MatchedValuesFilter(APPROXIMATE_MATCH_TYPE, rawAttributeType,
406 String rawAttributeType = attributeType.getNameOrOID();
409 new MatchedValuesFilter(APPROXIMATE_MATCH_TYPE, rawAttributeType,
422 * @param rawAttributeType The raw, unprocessed attribute type.
429 String rawAttributeType,
433 Reject.ifNull(rawAttributeType, matchingRuleID, rawAssertionValue);
434 return new MatchedValuesFilter(EXTENSIBLE_MATCH_TYPE, rawAttributeType,
456 String rawAttributeType = attributeType.getNameOrOID();
460 new MatchedValuesFilter(EXTENSIBLE_MATCH_TYPE, rawAttributeType,
575 writer.writeOctetString(rawAttributeType);
582 writer.writeOctetString(rawAttributeType);
608 writer.writeOctetString(matchType, rawAttributeType);
618 if (rawAttributeType != null)
620 writer.writeOctetString(TYPE_MATCHING_RULE_TYPE, rawAttributeType);
667 String rawAttributeType = reader.readOctetStringAsString();
670 return new MatchedValuesFilter(type, rawAttributeType,
689 String rawAttributeType = reader.readOctetStringAsString();
725 return new MatchedValuesFilter(type, rawAttributeType,
746 String rawAttributeType = reader.readOctetStringAsString();
748 return new MatchedValuesFilter(type, rawAttributeType,
769 String rawAttributeType = null;
779 rawAttributeType = reader.readOctetStringAsString();
784 return new MatchedValuesFilter(type, rawAttributeType,
828 return rawAttributeType;
840 if (attributeType == null && rawAttributeType != null)
842 String lowerName = toLowerCase(rawAttributeType);
843 attributeType = DirectoryServer.getAttributeTypeOrDefault(lowerName, rawAttributeType);
1254 buffer.append(rawAttributeType);
1291 buffer.append(rawAttributeType);
1304 if (rawAttributeType != null)
1306 buffer.append(rawAttributeType);
1325 buffer.append(rawAttributeType);