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

com.neko233.skilltree.commons.parser.text.TextMetadata Maven / Gradle / Ivy

There is a newer version: 0.1.0
Show newest version
package com.neko233.skilltree.commons.parser.text;


import com.neko233.skilltree.commons.core.base.StringUtils233;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;

/**
 * @author SolarisNeko
 * Date on 2023-01-29
 */
@Data
@NoArgsConstructor
@AllArgsConstructor
@Builder
public class TextMetadata {

    private int lineCount = 0;
    private int charCount = 0;
    private int byteCount = 0;

    public void addCharCount(String line) {
        if (StringUtils233.isBlank(line)) {
            return;
        }
        charCount += line.length();
    }

    public void addLineCount(int count) {
        this.lineCount += count;
    }

    public void addByteCount(String line) {
        this.byteCount += line.getBytes().length;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy