org.opensearch.migrations.cli.Format Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of MetadataMigration Show documentation
Show all versions of MetadataMigration Show documentation
Everything opensearch migrations
The newest version!
package org.opensearch.migrations.cli;
import lombok.experimental.UtilityClass;
/** Shared formatting for command line interface components */
@UtilityClass
public class Format {
private static final String INDENT = " ";
/** Indents to a given level for printing to the console */
public static String indentToLevel(final int level) {
return INDENT.repeat(level);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy