Enum Class PresetTexture
- 所有已实现的接口:
Serializable
,Comparable<PresetTexture>
,Constable
Specifies texture to be used to fill a shape.
-
嵌套类概要
从类继承的嵌套类/接口 java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
枚举常量概要
枚举常量说明Specifies the blue tissue paper textureSpecifies the bouquet texture.Specifies the brown marble texture.Specifies the canvas texture.Specifies the cork texture.Specifies the denim texture.Specifies the fish fossil texture.Specifies the granite texture.Specifies the green marble texture.Specifies the medium wood texture.Used in some special shapes only.Specifies the newsprint texture.Specifies the oak texture.Specifies the paper bag texture.Specifies the papyrus texture.Specifies the parchment texture.Specifies the pink tissue paper texture.Specifies the purple mesh texture.Specifies the recycled paper texture.Specifies the sand texture.Specifies the stationery texture.Specifies the walnut texture.Specifies the water droplets texture.Specifies the white marble texture.Specifies the woven mat texture. -
方法概要
修饰符和类型方法说明static PresetTexture
Returns the enum constant of this class with the specified name.static PresetTexture[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
枚举常量详细资料
-
Papyrus
Specifies the papyrus texture. -
Canvas
Specifies the canvas texture. -
Denim
Specifies the denim texture. -
WovenMat
Specifies the woven mat texture. -
WaterDroplets
Specifies the water droplets texture. -
PaperBag
Specifies the paper bag texture. -
FishFossil
Specifies the fish fossil texture. -
Sand
Specifies the sand texture. -
GreenMarble
Specifies the green marble texture. -
WhiteMarble
Specifies the white marble texture. -
BrownMarble
Specifies the brown marble texture. -
Granite
Specifies the granite texture. -
Newsprint
Specifies the newsprint texture. -
RecycledPaper
Specifies the recycled paper texture. -
Parchment
Specifies the parchment texture. -
Stationery
Specifies the stationery texture. -
BlueTissuePaper
Specifies the blue tissue paper texture -
PinkTissuePaper
Specifies the pink tissue paper texture. -
PurpleMesh
Specifies the purple mesh texture. -
Bouquet
Specifies the bouquet texture. -
Cork
Specifies the cork texture. -
Walnut
Specifies the walnut texture. -
Oak
Specifies the oak texture. -
MediumWood
Specifies the medium wood texture. -
Mixed
Used in some special shapes only.
-
-
方法详细资料
-
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
- 如果参数为空值
-