kz.greetgo.conf.hot.ConfigLine Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of greetgo.conf Show documentation
Show all versions of greetgo.conf Show documentation
Configuration library using in greetgo!
package kz.greetgo.conf.hot;
import java.util.List;
public interface ConfigLine {
String fullName();
List setStoredValue(String value, boolean commented);
@SuppressWarnings("BooleanMethodIsAlwaysInverted")
boolean isStored();
String description();
String getNotNullDefaultStringValue();
}