Example usage for org.apache.poi.hssf.converter AbstractExcelUtils subclass-usage

List of usage examples for org.apache.poi.hssf.converter AbstractExcelUtils subclass-usage

Introduction

In this page you can find the example usage for org.apache.poi.hssf.converter AbstractExcelUtils subclass-usage.

Usage

From source file com.wangzhu.poi.ExcelToHtmlUtils.java

public class ExcelToHtmlUtils extends AbstractExcelUtils {
    static final String EMPTY = "";

    public static void appendAlign(StringBuffer style, short alignment) {
        String cssAlign = AbstractExcelUtils.getAlign(alignment);
        if (ExcelToHtmlUtils.isEmpty(cssAlign)) {