public class JXLCell extends Object implements CommonCell
修飾子とタイプ | メソッドと説明 |
---|---|
boolean |
getBooleanCellValue()
Boolean型のセルとして値を取得する。
|
Cell |
getCell()
JExcelAPIの元々のセルのインスタンスを取得する。
|
String |
getCellAddress()
セルのアドレスを取得する。
|
Date |
getDateCellValue()
日時型のセルとして値を取得する。
|
short |
getFormatIndex()
書式のインデックス番号を取得する。
|
String |
getFormatPattern()
書式のパターンを取得する。
|
double |
getNumberCellValue()
数値型のセルとして値を取得する。
|
String |
getTextCellValue()
文字列型のセルとして値を取得する。
|
boolean |
isBoolean()
ブール型のセルかどうか。
|
boolean |
isDateStart1904()
日時の開始日が1904年かどうか。
|
boolean |
isNumber()
数値型のセルかどうか。
|
boolean |
isText()
文字列型のセルかどうか。
|
public JXLCell(Cell cell, boolean dateStart1904)
cell
- フォーマット対象のセルのインスタンス。dateStart1904
- 日付の開始が1904年始まりかどうか。
JXLUtils.isDateStart1904(jxl.Sheet)
を使用して、Workbookまたはシートから取得する。IllegalArgumentException
- cell == null.public Cell getCell()
public short getFormatIndex()
CommonCell
インデックス番号がない場合は0を返す。
getFormatIndex
インタフェース内 CommonCell
public String getFormatPattern()
CommonCell
パターンがない場合は、空文字を返す。
getFormatPattern
インタフェース内 CommonCell
public boolean isText()
CommonCell
isText
インタフェース内 CommonCell
public String getTextCellValue()
CommonCell
getTextCellValue
インタフェース内 CommonCell
public boolean isBoolean()
CommonCell
isBoolean
インタフェース内 CommonCell
public boolean getBooleanCellValue()
CommonCell
getBooleanCellValue
インタフェース内 CommonCell
public boolean isNumber()
CommonCell
isNumber
インタフェース内 CommonCell
public double getNumberCellValue()
CommonCell
日時型の場合でもExcelの内部表現である数値に変換して値を取得する。
getNumberCellValue
インタフェース内 CommonCell
public Date getDateCellValue()
CommonCell
ただじ、タイムゾーンは標準のGMT-00:00とする。
数値型の場合でも日時型に変換して値を取得する。
getDateCellValue
インタフェース内 CommonCell
public boolean isDateStart1904()
CommonCell
isDateStart1904
インタフェース内 CommonCell
public String getCellAddress()
CommonCell
getCellAddress
インタフェース内 CommonCell
Copyright © 2021 mygreen. All rights reserved.