Package bad.robot.excel.style

Examples of bad.robot.excel.style.NoStyle


public class ErrorCell extends StyledCell {

    private final Byte errorCode;

    public ErrorCell(Byte text) {
        this(text, new NoStyle());
    }
View Full Code Here


public class FormulaCell extends StyledCell {

    private final String formula;

    public FormulaCell(String formula) {
        this(formula, new NoStyle());
    }
View Full Code Here

import static org.apache.poi.ss.usermodel.Cell.CELL_TYPE_BLANK;

public class BlankCell extends StyledCell {

    public BlankCell() {
        this(new NoStyle());
    }
View Full Code Here

public class DoubleCell extends StyledCell {

    private final Double number;

    public DoubleCell(Double number) {
        this(number, new NoStyle());
    }
View Full Code Here

    public static StyledRowBuilder aRowWithDefaultStyle(Style defaultStyle) {
        return new DefaultStyledRowBuilder(defaultStyle);
    }

    public static StyledRowBuilder aRow() {
        return new DefaultStyledRowBuilder(new NoStyle());
    }
View Full Code Here

public class StringCell extends StyledCell {

    private final String text;

    public StringCell(String text) {
        this(text, new NoStyle());
    }
View Full Code Here

public class BooleanCell extends StyledCell {

    private final Boolean value;

    public BooleanCell(Boolean value) {
        this(value, new NoStyle());
    }
View Full Code Here

    private final String text;
    private final URL link;

    public HyperlinkCell(String text, URL link) {
        this(text, link, new NoStyle());
    }
View Full Code Here

public class DateCell extends StyledCell {

    private final Date date;

    public DateCell(Date date) {
        this(date, new NoStyle());
    }
View Full Code Here

TOP

Related Classes of bad.robot.excel.style.NoStyle

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.