toml4j/src/main/java/com/moandjiezana/toml/TableArrayValueWriter.java

28 lines
677 B
Java
Raw Normal View History

package com.moandjiezana.toml;
import java.util.Collection;
import static com.moandjiezana.toml.ValueWriters.WRITERS;
class TableArrayValueWriter extends ArrayValueWriter {
static final ValueWriter TABLE_ARRAY_VALUE_WRITER = new TableArrayValueWriter();
@Override
public boolean canWrite(Object value) {
return isArrayish(value) && !isArrayOfPrimitive(value);
}
@Override
public void write(Object value, WriterContext context) {
Collection values = normalize(value);
WriterContext subContext = context.pushTableFromArray();
for (Object elem : values) {
WRITERS.write(elem, subContext);
}
}
private TableArrayValueWriter() {}
}