ページの先頭行へ戻る
Interstage List Works V11.0.0 APIリファレンス
FUJITSU Software

3.2.3 Javaクラス(KeepFolderAttribute)

KeepFolderAttributeとは、保管フォルダ情報クラスのことです。

以下に、Javaクラス(KeepFolderAttribute)のメソッドを示します。

メソッド

機能

getClassNo

保管フォルダの階層番号の取得

getCreateDate

保管フォルダの作成日時の取得

getName

保管フォルダ名の取得

getNodeId

保管フォルダの識別子の取得

getPath

保管フォルダの論理パスの取得


3.2.3.1 getClassNo(保管フォルダの階層番号の取得)

記述形式

KeepFolderAttribute.getClassNo()

機能

保管フォルダの階層番号を取得します。

パラメタの説明

なし


復帰値

short型の保管フォルダの階層番号


使用例

フォルダ情報番号0の保管フォルダの階層番号を取得します。

  KeepFolderAttribute keepFolderAttribute = listConfig.getKeepFolderAttribute(0);
  keepFolderAttribute.getClassNo();

3.2.3.2 getCreateDate(保管フォルダの作成日時の取得)

記述形式

KeepFolderAttribute.getCreateDate()

機能

保管フォルダの作成日時を取得します。


パラメタの説明

なし


復帰値

java.lang.String型の保管フォルダの作成日時


使用例

フォルダ情報番号0の保管フォルダの作成日時を取得します。

  KeepFolderAttribute keepFolderAttribute = listConfig.getKeepFolderAttribute(0);
  keepFolderAttribute.getCreateDate();

3.2.3.3 getName(保管フォルダ名の取得)

記述形式

KeepFolderAttribute.getName()

機能

保管フォルダ名を取得します。


パラメタの説明

なし


復帰値

java.lang.String型の保管フォルダ名


使用例

フォルダ情報番号0の保管フォルダのフォルダ名を取得します。

  KeepFolderAttribute keepFolderAttribute = listConfig.getKeepFolderAttribute(0);
  keepFolderAttribute.getName();

3.2.3.4 getNodeId(保管フォルダの識別子の取得)

記述形式

KeepFolderAttribute.getNodeId()

機能

保管フォルダの識別子を取得します。


パラメタの説明

なし


復帰値

java.lang.String型の保管フォルダの識別子


使用例

フォルダ情報番号0の保管フォルダの識別子を取得します。

  KeepFolderAttribute keepFolderAttribute = listConfig.getKeepFolderAttribute(0);
  keepFolderAttribute.getNodeId();

3.2.3.5 getPath(保管フォルダの論理パスの取得)

記述形式

KeepFolderAttribute.getPath()

機能

保管フォルダの論理パスを取得します。

  形式:保管フォルダが「eigyo」の場合
          /eigyo

パラメタの説明

なし


復帰値

java.lang.String型の保管フォルダの論理パス


使用例

フォルダ情報番号0の保管フォルダの論理パスを取得します。

  KeepFolderAttribute keepFolderAttribute = listConfig.getKeepFolderAttribute(0);
  keepFolderAttribute.getPath();