Enum Class RinearnGraph3DOptionItem
- All Implemented Interfaces:
Serializable
,Comparable<RinearnGraph3DOptionItem>
,Constable
リニアングラフ3D(RINEARN Graph 3D)のプロットオプションを表す列挙型です
The enum representing the plotting options of RINEARN Graph 3D
.
この列挙型は、主にデータファイルを開く
RinearnGraph3D.setOptionSelected
メソッドの引数として使用します。
This enum is mainly used as an argument of
RinearnGraph3D.setOptionSelected
method.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescription「ブラックスクリーン(Black Screen)」オプションです Represents "Black Screen" option .「等高線プロット(With Contours)」オプションです Represents "With Contours" option .「ドットプロット(With Dots)」オプションです Represents "With Dots" option .「平面化(Flat)」オプションです Represents "Flat" option .「フレーム(Frame)」オプションです Represents "Frame" option .「グラデーション(Gradation)」オプションです Represents "Gradation" option .「グリッド(Grid)」オプションです Represents "Grid" option .「線プロット(With Lines)」オプションです Represents "With Lines" option .「対数軸 X(Log X)」オプションです Represents "Log X" option .「対数軸 Y(Log Y)」オプションです Represents "Log Y" option .「対数軸 Z(Log Z)」オプションです Represents "Log Z" option .「曲面プロット(With Meshes)」オプションです Represents "With Membranes" option .「メッシュプロット(With Meshes)」オプションです Represents "With Meshes" option .「点プロット(With Points)」オプションです Represents "With Points" option .「軸反転 X(Reverse X)」オプションです Represents "Reverse X" option .「軸反転 Y(Reverse Y)」オプションです Represents "Reverse Y" option .「軸反転 Z(Reverse Z)」オプションです Represents "Reverse Z" option .「目盛り(Scale)」オプションです Represents "Scale" option . -
Method Summary
Modifier and TypeMethodDescriptionstatic RinearnGraph3DOptionItem
Returns the enum constant of this class with the specified name.static RinearnGraph3DOptionItem[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
LINE
「線プロット(With Lines)」オプションです Represents "With Lines" option . -
POINT
「点プロット(With Points)」オプションです Represents "With Points" option . -
DOT
「ドットプロット(With Dots)」オプションです Represents "With Dots" option . -
MESH
「メッシュプロット(With Meshes)」オプションです Represents "With Meshes" option . -
MEMBRANE
「曲面プロット(With Meshes)」オプションです Represents "With Membranes" option . -
CONTOUR
「等高線プロット(With Contours)」オプションです Represents "With Contours" option . -
LOG_X
「対数軸 X(Log X)」オプションです Represents "Log X" option . -
LOG_Y
「対数軸 Y(Log Y)」オプションです Represents "Log Y" option . -
LOG_Z
「対数軸 Z(Log Z)」オプションです Represents "Log Z" option . -
REVERSE_X
「軸反転 X(Reverse X)」オプションです Represents "Reverse X" option . -
REVERSE_Y
「軸反転 Y(Reverse Y)」オプションです Represents "Reverse Y" option . -
REVERSE_Z
「軸反転 Z(Reverse Z)」オプションです Represents "Reverse Z" option . -
FLAT
「平面化(Flat)」オプションです Represents "Flat" option . -
BLACK_SCREEN
「ブラックスクリーン(Black Screen)」オプションです Represents "Black Screen" option . -
FRAME
「フレーム(Frame)」オプションです Represents "Frame" option . -
GRID
「グリッド(Grid)」オプションです Represents "Grid" option . -
SCALE
「目盛り(Scale)」オプションです Represents "Scale" option . -
GRADATION
「グラデーション(Gradation)」オプションです Represents "Gradation" option .
-
-
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
-