Java String Indent Format indention(int level, int tabSize)

Here you can find the source of indention(int level, int tabSize)

Description

Create an indention string that contains level * tabSize space characters.

License

Open Source License

Declaration

public static String indention(int level, int tabSize) 

Method Source Code

//package com.java2s;
/*/*from  www . j a v  a  2 s.  com*/
 * Copyright (c) 2016 Catavolt Inc. All rights reserved.
 *
 * This file is part of Ozy.
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Affero General Public License for more details.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

public class Main {
    public static final int DEFAULT_TAB_SIZE = 4;

    /**
     * Create an indention string that contains level * tabSize space characters.
     */
    public static String indention(int level, int tabSize) {
        StringBuilder indention = new StringBuilder();
        for (int i = 0; i < level * tabSize; i++) {
            indention.append(" ");
        }
        return indention.toString();
    }

    public static String indention(int level) {
        return indention(level, DEFAULT_TAB_SIZE);
    }
}

Related

  1. indentationLevel(CharSequence c)
  2. indentationStringOfCursorLine(String text, int cursor)
  3. indentCode(String code, int indentLevel)
  4. indented(String indenter, String s)
  5. indentHtmlSpaces(int count)
  6. indentLinesAfterNth(final int skip, final int indent, final String str)
  7. indentMultilineValue(String value, StringBuilder tableInfo, int[] columnWidths, boolean printNull)
  8. indentNextLines(String text, String indent)
  9. indentParagraph(String textBefore, String textToModify)