Package io.keikai.model.impl
Class CellBuffer
- java.lang.Object
-
- io.keikai.model.impl.CellBuffer
-
- All Implemented Interfaces:
java.io.Serializable
public class CellBuffer extends java.lang.Object implements java.io.Serializablea 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
-
-
-
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 java.lang.Object getValue()
-
setValue
public void setValue(java.lang.Object value)
-
getFormula
public java.lang.String getFormula()
-
setFormula
public void setFormula(java.lang.String formula)
-
setNames
public void setNames(java.util.Set<SName> names)
-
getNames
public java.util.Set<SName> getNames()
-
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)
-
-