ConditionResult result = ConditionResult.FALSE;
for (AttributeValue v : values)
{
try
{
ByteString nv = matchingRule.normalizeValue(v.getValue());
int comparisonResult = matchingRule
.compareValues(nv, normalizedValue);
if (comparisonResult <= 0)
{
return ConditionResult.TRUE;