ru.vyarus.yaml.updater.parse.common.model.LineNumberAware Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of yaml-config-updater Show documentation
Show all versions of yaml-config-updater Show documentation
Merges current yaml config with a new version to add missed properties
The newest version!
package ru.vyarus.yaml.updater.parse.common.model;
/**
* Unification for yaml nodes and tree node (not mapped object, grouping all root yaml properties).
*
* @author Vyacheslav Rusakov
* @since 18.05.2021
*/
public interface LineNumberAware {
/**
* @return yaml line number, starting from 1, or 0 to indicate tree root
*/
int getLineNum();
}