列挙クラス RinearnGraph3DDataFileFormat
- すべての実装されたインタフェース:
Serializable
,Comparable<RinearnGraph3DDataFileFormat>
,Constable
リニアングラフ3D(RINEARN Graph 3D)でサポートされている, データファイルの書式を表す列挙型です
The enum representing the data file formats supported on RINEARN Graph 3D
.
この列挙型は, 主にデータファイルを開く
RinearnGraph3D.openDataFile
メソッドの引数として, 書式を指定するために使用します.
それぞれの書式の詳細については, リニアングラフ3Dのユーザーガイドにおける
座標値ファイル書式 の説明をご参照ください.
This enum is mainly used as an argument of
RinearnGraph3D.openDataFile
method,
for specifying the format of the data file to be opened.
For datails of each data file format,
see the following page in the user's guide of the RINEARN Graph 3D: 'Data File Formats'.
-
ネストされたクラスの概要
クラスから継承されたネストされたクラス/インタフェース java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
列挙型定数の概要
列挙定数列挙型定数説明自動で書式を判定するための, 特別な値です The meta value for detecting the file format automatically .4カラム書式の, カンマ区切りファイルを表します Represents a comma-separated file of the four-columns format .4カラム書式の, タブ/スペース区切りファイルを表します Represents a space/tab-separated file of the four-columns format .マトリックス書式の, カンマ区切りファイルを表します Represents a comma-separated file of the matrix format .マトリックス書式の, タブ/スペース区切りファイルを表します Represents a space/tab-separated file of the matrix format .3カラム書式の, カンマ区切りファイルを表します Represents a comma-separated file of the three-columns format .3カラム書式の, タブ/スペース区切りファイルを表します Represents a space/tab-separated file of the three-columns format . -
メソッドの概要
修飾子とタイプメソッド説明static RinearnGraph3DDataFileFormat
このクラスの列挙型定数を指定した名前で返します。static RinearnGraph3DDataFileFormat[]
values()
この列挙クラスの定数を含む配列を宣言されている順序で 返します。
-
列挙型定数の詳細
-
AUTO
自動で書式を判定するための, 特別な値です The meta value for detecting the file format automatically . -
THREE_COLUMNS_CSV
3カラム書式の, カンマ区切りファイルを表します Represents a comma-separated file of the three-columns format . -
THREE_COLUMNS_STSV
3カラム書式の, タブ/スペース区切りファイルを表します Represents a space/tab-separated file of the three-columns format . -
FOUR_COLUMNS_CSV
4カラム書式の, カンマ区切りファイルを表します Represents a comma-separated file of the four-columns format . -
FOUR_COLUMNS_STSV
4カラム書式の, タブ/スペース区切りファイルを表します Represents a space/tab-separated file of the four-columns format . -
MATRIX_CSV
マトリックス書式の, カンマ区切りファイルを表します Represents a comma-separated file of the matrix format . -
MATRIX_STSV
マトリックス書式の, タブ/スペース区切りファイルを表します Represents a space/tab-separated file of the matrix format .
-
-
メソッドの詳細
-
values
この列挙クラスの定数を含む配列を宣言されている順序で 返します。- 戻り値:
- この列挙クラスの定数を宣言されている順序で含む配列
-
valueOf
このクラスの列挙型定数を指定した名前で返します。 文字列は、このクラスの列挙型定数の宣言に使用された識別子と正確に 一致する必要があります。(余分な空白文字は使用 できません。)- パラメータ:
name
- 返される列挙型定数の名前。- 戻り値:
- 指定した名前の列挙型定数
- 例外:
IllegalArgumentException
- この列挙クラスに、指定した名前の定数がない場合NullPointerException
- 引数がnullの場合
-