Enum Class RinearnGraph3DDataFileFormat

java.lang.Object
java.lang.Enum<RinearnGraph3DDataFileFormat>
com.rinearn.graph3d.RinearnGraph3DDataFileFormat
All Implemented Interfaces:
Serializable, Comparable<RinearnGraph3DDataFileFormat>, Constable

public enum RinearnGraph3DDataFileFormat extends Enum<RinearnGraph3DDataFileFormat>
リニアングラフ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 Constants
    Enum Constant
    Description
    自動で書式を判定するための, 特別な値です 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 Type
    Method
    Description
    Returns the enum constant of this class with the specified name.
    Returns an array containing the constants of this enum class, in the order they are declared.

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait
  • Enum Constant Details

    • AUTO

      public static final RinearnGraph3DDataFileFormat AUTO
      自動で書式を判定するための, 特別な値です The meta value for detecting the file format automatically .
    • THREE_COLUMNS_CSV

      public static final RinearnGraph3DDataFileFormat THREE_COLUMNS_CSV
      3カラム書式の, カンマ区切りファイルを表します Represents a comma-separated file of the three-columns format .
    • THREE_COLUMNS_STSV

      public static final RinearnGraph3DDataFileFormat THREE_COLUMNS_STSV
      3カラム書式の, タブ/スペース区切りファイルを表します Represents a space/tab-separated file of the three-columns format .
    • FOUR_COLUMNS_CSV

      public static final RinearnGraph3DDataFileFormat FOUR_COLUMNS_CSV
      4カラム書式の, カンマ区切りファイルを表します Represents a comma-separated file of the four-columns format .
    • FOUR_COLUMNS_STSV

      public static final RinearnGraph3DDataFileFormat FOUR_COLUMNS_STSV
      4カラム書式の, タブ/スペース区切りファイルを表します Represents a space/tab-separated file of the four-columns format .
    • MATRIX_CSV

      public static final RinearnGraph3DDataFileFormat MATRIX_CSV
      マトリックス書式の, カンマ区切りファイルを表します Represents a comma-separated file of the matrix format .
    • MATRIX_STSV

      public static final RinearnGraph3DDataFileFormat MATRIX_STSV
      マトリックス書式の, タブ/スペース区切りファイルを表します Represents a space/tab-separated file of the matrix format .
  • Method Details

    • values

      public static RinearnGraph3DDataFileFormat[] 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

      public static RinearnGraph3DDataFileFormat valueOf(String name)
      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 name
      NullPointerException - if the argument is null