Searched refs:propertyElement (Results 1 – 2 of 2) sorted by relevance
306 Object propertyElement = Array.get(property, i); in appendPropertyString() local307 if (propertyElement instanceof String) { in appendPropertyString()308 builder.append("\"").append((String) propertyElement).append("\""); in appendPropertyString()309 } else if (propertyElement instanceof byte[]) { in appendPropertyString()310 builder.append(Arrays.toString((byte[]) propertyElement)); in appendPropertyString()312 builder.append(propertyElement.toString()); in appendPropertyString()
1019 Object propertyElement = Array.get(property, i); in appendPropertyString() local1020 if (propertyElement instanceof String) { in appendPropertyString()1021 builder.append("\"").append((String) propertyElement).append("\""); in appendPropertyString()1022 } else if (propertyElement instanceof byte[]) { in appendPropertyString()1023 builder.append(Arrays.toString((byte[]) propertyElement)); in appendPropertyString()1024 } else if (propertyElement != null) { in appendPropertyString()1025 builder.append(propertyElement.toString()); in appendPropertyString()