Enum Class RinearnGraph3DDataFileFormat
- All Implemented Interfaces:
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'.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescription自動で書式を判定するための, 特別な値です 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 . -
Method Summary
Modifier and TypeMethodDescriptionstatic RinearnGraph3DDataFileFormat
Returns the enum constant of this class with the specified name.static RinearnGraph3DDataFileFormat[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
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 .
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-