KeepFolderAttributeとは、保管フォルダ情報クラスのことです。
以下に、Javaクラス(KeepFolderAttribute)のメソッドを示します。
メソッド | 機能 |
---|---|
getClassNo | 保管フォルダの階層番号の取得 |
getCreateDate | 保管フォルダの作成日時の取得 |
getName | 保管フォルダ名の取得 |
getNodeId | 保管フォルダの識別子の取得 |
getPath | 保管フォルダの論理パスの取得 |
記述形式
KeepFolderAttribute.getClassNo()
機能
保管フォルダの階層番号を取得します。
フォルダ情報番号「4」の保管フォルダ情報が取得されていると、フォルダの階層番号「2」を獲得します。
パラメタの説明
なし
復帰値
short型の保管フォルダの階層番号
使用例
フォルダ情報番号0の保管フォルダの階層番号を取得します。
KeepFolderAttribute keepFolderAttribute = listConfig.getKeepFolderAttribute(0); keepFolderAttribute.getClassNo();
記述形式
KeepFolderAttribute.getCreateDate()
機能
保管フォルダの作成日時を取得します。
パラメタの説明
なし
復帰値
java.lang.String型の保管フォルダの作成日時
使用例
フォルダ情報番号0の保管フォルダの作成日時を取得します。
KeepFolderAttribute keepFolderAttribute = listConfig.getKeepFolderAttribute(0); keepFolderAttribute.getCreateDate();
記述形式
KeepFolderAttribute.getName()
機能
保管フォルダ名を取得します。
パラメタの説明
なし
復帰値
java.lang.String型の保管フォルダ名
使用例
フォルダ情報番号0の保管フォルダのフォルダ名を取得します。
KeepFolderAttribute keepFolderAttribute = listConfig.getKeepFolderAttribute(0); keepFolderAttribute.getName();
記述形式
KeepFolderAttribute.getNodeId()
機能
保管フォルダの識別子を取得します。
パラメタの説明
なし
復帰値
java.lang.String型の保管フォルダの識別子
使用例
フォルダ情報番号0の保管フォルダの識別子を取得します。
KeepFolderAttribute keepFolderAttribute = listConfig.getKeepFolderAttribute(0); keepFolderAttribute.getNodeId();
記述形式
KeepFolderAttribute.getPath()
機能
保管フォルダの論理パスを取得します。
形式:保管フォルダが「eigyo」の場合 /eigyo
パラメタの説明
なし
復帰値
java.lang.String型の保管フォルダの論理パス
使用例
フォルダ情報番号0の保管フォルダの論理パスを取得します。
KeepFolderAttribute keepFolderAttribute = listConfig.getKeepFolderAttribute(0); keepFolderAttribute.getPath();