org.pkl.thirdparty.paguro.indent.Indented Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pkl-config-java-all Show documentation
Show all versions of pkl-config-java-all Show documentation
Shaded fat Jar for pkl-config-java, a Java config library based on the Pkl config language.
package org.pkl.thirdparty.paguro.indent;
import org.pkl.thirdparty.jetbrains.annotations.NotNull;
/**
Created by gpeterso on 5/21/17.
*/
public interface Indented {
/**
Returns a string where line breaks extend the given amount of indentation.
@param indent the amount of indent to start at. Pretty-printed subsequent lines may have
additional indent.
@return a string with the given starting offset (in spaces) for every line.
*/
@NotNull String indentedStr(int indent);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy