Package de.gsi.chart.samples
Enum ErrorDataSetRendererStylingSample.DataSetType
- java.lang.Object
-
- java.lang.Enum<ErrorDataSetRendererStylingSample.DataSetType>
-
- de.gsi.chart.samples.ErrorDataSetRendererStylingSample.DataSetType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<ErrorDataSetRendererStylingSample.DataSetType>
- Enclosing class:
- ErrorDataSetRendererStylingSample
public static enum ErrorDataSetRendererStylingSample.DataSetType extends java.lang.Enum<ErrorDataSetRendererStylingSample.DataSetType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description COSINEGAUSSMIX_TRIGONOMETRICOUTLIERRANDOM_WALKSINCSINESTEP
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ErrorDataSetRendererStylingSample.DataSetTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static ErrorDataSetRendererStylingSample.DataSetType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
RANDOM_WALK
public static final ErrorDataSetRendererStylingSample.DataSetType RANDOM_WALK
-
OUTLIER
public static final ErrorDataSetRendererStylingSample.DataSetType OUTLIER
-
STEP
public static final ErrorDataSetRendererStylingSample.DataSetType STEP
-
SINC
public static final ErrorDataSetRendererStylingSample.DataSetType SINC
-
GAUSS
public static final ErrorDataSetRendererStylingSample.DataSetType GAUSS
-
SINE
public static final ErrorDataSetRendererStylingSample.DataSetType SINE
-
COSINE
public static final ErrorDataSetRendererStylingSample.DataSetType COSINE
-
MIX_TRIGONOMETRIC
public static final ErrorDataSetRendererStylingSample.DataSetType MIX_TRIGONOMETRIC
-
-
Method Detail
-
values
public static ErrorDataSetRendererStylingSample.DataSetType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ErrorDataSetRendererStylingSample.DataSetType c : ErrorDataSetRendererStylingSample.DataSetType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ErrorDataSetRendererStylingSample.DataSetType valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-