for (Entry<Vendor, List<String>> property : properties.entrySet()) {
String value = I.join(separator, property.getValue());
if (value.length() != 0) {
Vendor vendor = property.getKey();
if (!prefixes.contains(vendor)) {
vendor = Standard;
}
holder.put(vendor + name, value);