while ( valueEnumeration.hasMore() )
{
Object o = valueEnumeration.next();
if ( o instanceof String )
{
modSpec.addAttrVal( LdifAttrValLine.create( attributeDescription, ( String ) o ) );
}
if ( o instanceof byte[] )
{
modSpec.addAttrVal( LdifAttrValLine.create( attributeDescription, ( byte[] ) o ) );
}