package jxl.format;

import com.seewo.vcommons.executor.ButtonActionExecutor;

/* JADX INFO: loaded from: classes.dex */
public class BoldStyle {
    private String string;
    private int value;
    public static final BoldStyle NORMAL = new BoldStyle(ButtonActionExecutor.TIME_PAGE_CHANGED_DLEAYED, "Normal");
    public static final BoldStyle BOLD = new BoldStyle(700, "Bold");

    protected BoldStyle(int i2, String str) {
        this.value = i2;
        this.string = str;
    }

    public String getDescription() {
        return this.string;
    }

    public int getValue() {
        return this.value;
    }
}
