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

org.fugerit.java.doc.base.helper.TextWrapHelper Maven / Gradle / Ivy

There is a newer version: 8.11.9
Show newest version
package org.fugerit.java.doc.base.helper;

import org.fugerit.java.core.function.SafeFunction;

public class TextWrapHelper {

    private TextWrapHelper() {}

    public static final String ZERO_WITH_SPACE = "​";

    public static String padZeroWithSpace( String input ) {
        return SafeFunction.getIfNotNull( input, () -> {
            StringBuilder builder = new StringBuilder();
            for( int i=0; i




© 2015 - 2025 Weber Informatics LLC | Privacy Policy