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

com.github.mygreen.supercsv.cellprocessor.conversion.SimplePaddingProcessor Maven / Gradle / Ivy

Go to download

CSVのJavaライブラリであるSuperCSVに、アノテーション機能を追加したライブラリです。

There is a newer version: 2.3
Show newest version
package com.github.mygreen.supercsv.cellprocessor.conversion;

import com.github.mygreen.supercsv.util.ArgUtils;

/**
 * 文字の種別にかかわらず1文字としてカウントしてパディング処理する。
 *
 * @since 2.1
 * @author T.TSUCHIE
 *
 */
public class SimplePaddingProcessor extends AbstractPaddingOperator {
    
    @Override
    public int count(int codePoint) {
        return 1;
    }
    
    @Override
    public int count(final String text) {
        ArgUtils.notNull(text, "text");
        return text.codePointCount(0, text.length());
    }
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy