Package com.atlan.samples.writers
Class ExcelWriter.DataCell
- java.lang.Object
-
- com.atlan.samples.writers.ExcelWriter.DataCell
-
- Enclosing class:
- ExcelWriter
public static final class ExcelWriter.DataCell extends java.lang.Object
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Boolean
getBoolValue()
java.lang.Double
getDecValue()
java.lang.Long
getLongValue()
java.lang.String
getStrValue()
com.atlan.samples.writers.ExcelWriter.DataCell.TYPE
getType()
static ExcelWriter.DataCell
of(boolean value)
static ExcelWriter.DataCell
of(double value)
static ExcelWriter.DataCell
of(long value)
static ExcelWriter.DataCell
of(com.atlan.model.enums.AtlanEnum value)
static ExcelWriter.DataCell
of(java.lang.String value)
-
-
-
Method Detail
-
of
public static ExcelWriter.DataCell of(double value)
-
of
public static ExcelWriter.DataCell of(long value)
-
of
public static ExcelWriter.DataCell of(boolean value)
-
of
public static ExcelWriter.DataCell of(java.lang.String value)
-
of
public static ExcelWriter.DataCell of(com.atlan.model.enums.AtlanEnum value)
-
getType
public com.atlan.samples.writers.ExcelWriter.DataCell.TYPE getType()
-
getDecValue
public java.lang.Double getDecValue()
-
getLongValue
public java.lang.Long getLongValue()
-
getBoolValue
public java.lang.Boolean getBoolValue()
-
getStrValue
public java.lang.String getStrValue()
-
-