public enum SciChartTextureTemplate extends java.lang.Enum<SciChartTextureTemplate>
Enum Constant and Description |
---|
Circle
The Circle texture
|
Default
The default texture (blank)
|
Square
The Square/Quad texture
|
Triangle
The Triangle texture
|
Modifier and Type | Method and Description |
---|---|
static SciChartTextureTemplate |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SciChartTextureTemplate[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SciChartTextureTemplate Default
public static final SciChartTextureTemplate Circle
public static final SciChartTextureTemplate Square
public static final SciChartTextureTemplate Triangle
public static SciChartTextureTemplate[] values()
for (SciChartTextureTemplate c : SciChartTextureTemplate.values()) System.out.println(c);
public static SciChartTextureTemplate valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null