com.github.bloodshura.ignitium.cfg.csv.Csv Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ignitium-cfg Show documentation
Show all versions of ignitium-cfg Show documentation
A collection of configuration and serialization readers and writers, like JSON, internationalization (I18n), and CSV.
package com.github.bloodshura.ignitium.cfg.csv;
import com.github.bloodshura.ignitium.collection.list.impl.XArrayList;
import javax.annotation.Nullable;
public class Csv extends XArrayList {
private final CsvEntry header;
public Csv() {
this(null);
}
public Csv(@Nullable CsvEntry header) {
this.header = header;
}
@Nullable
public CsvEntry getHeader() {
return header;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy