return comparator.compare( getNormValue(), other.getNormValue() ) == 0;
}
else
{
Normalizer normalizer = attributeType.getEquality().getNormalizer();
return comparator.compare( normalizer.normalize( getValue() ),
normalizer.normalize( other.getValue() ) ) == 0;
}
}
}
catch ( LdapException ne )