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

com.hadii.stiff.text.NormalizedSpaceText Maven / Gradle / Ivy

The newest version!
package com.hadii.stiff.text;

import org.apache.commons.lang3.StringUtils;

/**
 * Represents text with normalized spacing.
 */
final class NormalizedSpaceText implements Text {

    private final Text text;

    NormalizedSpaceText(Text text) {
        this.text = text;
    }

    @Override
    public String value() {
        return StringUtils.normalizeSpace(this.text.value());
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy