Package io.keikai.model.impl
Class CellBuffer
- java.lang.Object
-
- io.keikai.model.impl.CellBuffer
-
- All Implemented Interfaces:
Serializable
public class CellBuffer extends Object implements Serializable
a help class to hold cell data and apply to another- Since:
- 3.5.0
- Author:
- Dennis
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CellBuffer()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description void
applyComment(SCell destCell)
void
applyHyperlink(SCell destCell)
void
applyStyle(SCell destCell)
void
applyValue(SCell destCell)
static CellBuffer
bufferAll(SCell cell)
int
getColIndex()
SComment
getComment()
SConditionalFormatting
getConditionalFormatting()
String
getFormula()
SHyperlink
getHyperlink()
Set<SName>
getNames()
int
getRowIndex()
SCellStyle
getStyle()
SCell.CellType
getType()
SDataValidation
getValidation()
Object
getValue()
boolean
isNull()
void
setColIndex(int col)
void
setComment(SComment comment)
void
setConditionalFormatting(SConditionalFormatting cfmt)
void
setFormula(String formula)
void
setHyperlink(SHyperlink hyperlink)
void
setNames(Set<SName> names)
void
setNull(boolean isNull)
void
setRowIndex(int row)
void
setStyle(SCellStyle style)
void
setType(SCell.CellType type)
void
setValidation(SDataValidation validation)
void
setValue(Object value)
-
-
-
Method Detail
-
getRowIndex
public int getRowIndex()
-
setRowIndex
public void setRowIndex(int row)
-
getColIndex
public int getColIndex()
-
setColIndex
public void setColIndex(int col)
-
isNull
public boolean isNull()
-
setNull
public void setNull(boolean isNull)
-
getType
public SCell.CellType getType()
-
setType
public void setType(SCell.CellType type)
-
getValue
public Object getValue()
-
setValue
public void setValue(Object value)
-
getFormula
public String getFormula()
-
setFormula
public void setFormula(String formula)
-
getStyle
public SCellStyle getStyle()
-
setStyle
public void setStyle(SCellStyle style)
-
getComment
public SComment getComment()
-
setComment
public void setComment(SComment comment)
-
getValidation
public SDataValidation getValidation()
-
setValidation
public void setValidation(SDataValidation validation)
-
getHyperlink
public SHyperlink getHyperlink()
-
setHyperlink
public void setHyperlink(SHyperlink hyperlink)
-
bufferAll
public static CellBuffer bufferAll(SCell cell)
-
applyStyle
public void applyStyle(SCell destCell)
-
applyValue
public void applyValue(SCell destCell)
-
applyComment
public void applyComment(SCell destCell)
-
applyHyperlink
public void applyHyperlink(SCell destCell)
-
getConditionalFormatting
public SConditionalFormatting getConditionalFormatting()
-
setConditionalFormatting
public void setConditionalFormatting(SConditionalFormatting cfmt)
-
-