Enum Class PresetThreeDFormat
- 所有已实现的接口:
Serializable
,Comparable<PresetThreeDFormat>
,Constable
Specifies an extrusion (three-dimensional) format.
-
嵌套类概要
从类继承的嵌套类/接口 java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
枚举常量概要
枚举常量说明Specifies first 3-D format.Specifies tenth 3-D format.Specifies eleventh 3-D format.Specifies twelfth 3-D format.Specifies thirteenth 3-D format.Specifies fourteenth 3-D format.Specifies fifteenth 3-D format.Specifies sixteenth 3-D format.Specifies seventeenth 3-D format.Specifies eighteenth 3-D format.Specifies nineteenth 3-D format.Specifies second 3-D format.Specifies twentieth 3-D format.Specifies third 3-D format.Specifies fourth 3-D format.Specifies fifth 3-D format.Specifies sixth 3-D format.Specifies seventh 3-D format.Specifies eighth 3-D format.Specifies ninth 3-D format. -
方法概要
修饰符和类型方法说明static PresetThreeDFormat
Returns the enum constant of this class with the specified name.static PresetThreeDFormat[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
枚举常量详细资料
-
ThreeD1
Specifies first 3-D format. -
ThreeD2
Specifies second 3-D format. -
ThreeD3
Specifies third 3-D format. -
ThreeD4
Specifies fourth 3-D format. -
ThreeD5
Specifies fifth 3-D format. -
ThreeD6
Specifies sixth 3-D format. -
ThreeD7
Specifies seventh 3-D format. -
ThreeD8
Specifies eighth 3-D format. -
ThreeD9
Specifies ninth 3-D format. -
ThreeD10
Specifies tenth 3-D format. -
ThreeD11
Specifies eleventh 3-D format. -
ThreeD12
Specifies twelfth 3-D format. -
ThreeD13
Specifies thirteenth 3-D format. -
ThreeD14
Specifies fourteenth 3-D format. -
ThreeD15
Specifies fifteenth 3-D format. -
ThreeD16
Specifies sixteenth 3-D format. -
ThreeD17
Specifies seventeenth 3-D format. -
ThreeD18
Specifies eighteenth 3-D format. -
ThreeD19
Specifies nineteenth 3-D format. -
ThreeD20
Specifies twentieth 3-D format.
-
-
方法详细资料
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- 返回:
- 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.)- 参数:
name
- 要返回的枚举常量的名称。- 返回:
- 返回带有指定名称的枚举常量
- 抛出:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- 如果参数为空值
-