All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.opensearch.migrations.cli.Format Maven / Gradle / Ivy

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 - 2024 Weber Informatics LLC | Privacy Policy