public enum RenderType extends java.lang.Enum<RenderType>
| Enum Constant and Description |
|---|
bounds |
colorScatter |
contour |
digital |
eventsBar |
fillToZero |
hugeScatter |
image |
internal |
nnSpectrogram |
orbitPlot |
pitchAngleDistribution |
polar |
scatter |
series |
spectrogram |
stackedHistogram |
stairSteps |
vectorPlot |
| Modifier and Type | Method and Description |
|---|---|
static boolean |
acceptsData(RenderType rt,
QDataSet ds)
return true if the render type can make a reasonable rendering of the data.
|
static RenderType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RenderType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RenderType spectrogram
public static final RenderType nnSpectrogram
public static final RenderType hugeScatter
public static final RenderType series
public static final RenderType scatter
public static final RenderType colorScatter
public static final RenderType stairSteps
public static final RenderType fillToZero
public static final RenderType digital
public static final RenderType image
public static final RenderType pitchAngleDistribution
public static final RenderType polar
public static final RenderType eventsBar
public static final RenderType stackedHistogram
public static final RenderType vectorPlot
public static final RenderType bounds
public static final RenderType internal
public static final RenderType orbitPlot
public static final RenderType contour
public static RenderType[] values()
for (RenderType c : RenderType.values()) System.out.println(c);
public static RenderType 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 nullpublic static boolean acceptsData(RenderType rt, QDataSet ds)
rt - ds -