package jxl.write.biff;

import common.Logger;
import jxl.Cell;
import jxl.CellType;
import jxl.biff.Type;
import jxl.format.CellFormat;

/* JADX INFO: loaded from: classes.dex */
public abstract class BlankRecord extends CellValue {
    public static /* synthetic */ Class class$jxl$write$biff$BlankRecord;
    private static Logger logger;

    static {
        Class clsClass$ = class$jxl$write$biff$BlankRecord;
        if (clsClass$ == null) {
            clsClass$ = class$("jxl.write.biff.BlankRecord");
            class$jxl$write$biff$BlankRecord = clsClass$;
        }
        logger = Logger.getLogger(clsClass$);
    }

    public BlankRecord(int i2, int i3) {
        super(Type.BLANK, i2, i3);
    }

    public static /* synthetic */ Class class$(String str) {
        try {
            return Class.forName(str);
        } catch (ClassNotFoundException e2) {
            throw new NoClassDefFoundError(e2.getMessage());
        }
    }

    @Override // jxl.write.biff.CellValue, jxl.Cell
    public String getContents() {
        return "";
    }

    @Override // jxl.write.biff.CellValue, jxl.Cell
    public CellType getType() {
        return CellType.EMPTY;
    }

    public BlankRecord(int i2, int i3, CellFormat cellFormat) {
        super(Type.BLANK, i2, i3, cellFormat);
    }

    public BlankRecord(Cell cell) {
        super(Type.BLANK, cell);
    }

    public BlankRecord(int i2, int i3, BlankRecord blankRecord) {
        super(Type.BLANK, i2, i3, blankRecord);
    }
}
