@Override
public void add(@NotNull(message = "labels can't be NULL")
final Iterable<String> labels
) throws IOException {
final Directives dirs = new Directives().xpath(this.xpath());
for (final String label : labels) {
dirs.add("label").set(label).up();
}
this.storage.apply(dirs);
}