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

com.github.mygreen.cellformatter.callback.JapaneseCallback Maven / Gradle / Ivy

There is a newer version: 0.12
Show newest version
package com.github.mygreen.cellformatter.callback;

import java.util.Locale;

/**
 * 日本語のロケール情報を許可するCallback。
 *
 * @since 0.5
 * @author T.TSUCHIE
 *
 * @param   変換元の値
 */
public abstract class JapaneseCallback implements Callback {
    
    @Override
    public boolean isApplicable(final Locale locale) {
        if(locale == null) {
            return false;
        }
        
        if(locale.getLanguage().equalsIgnoreCase("ja")) {
            return true;
        }
        
        return false;
    }
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy