public static enum Distribution.Type extends java.lang.Enum<Distribution.Type> implements REpiceaTranslator.TextableEnum
Enum Constant and Description |
---|
CHI_SQUARE |
GAUSSIAN |
NONPARAMETRIC |
STUDENT |
UNIFORM |
UNKNOWN |
WISHART |
Modifier and Type | Method and Description |
---|---|
void |
setText(java.lang.String englishText,
java.lang.String frenchText)
This method sets the english and french text for the label, control or title.
|
java.lang.String |
toString() |
static Distribution.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Distribution.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Distribution.Type GAUSSIAN
public static final Distribution.Type UNIFORM
public static final Distribution.Type NONPARAMETRIC
public static final Distribution.Type UNKNOWN
public static final Distribution.Type CHI_SQUARE
public static final Distribution.Type WISHART
public static final Distribution.Type STUDENT
public static Distribution.Type[] values()
for (Distribution.Type c : Distribution.Type.values()) System.out.println(c);
public static Distribution.Type 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 void setText(java.lang.String englishText, java.lang.String frenchText)
REpiceaTranslator.TextableEnum
setText
in interface REpiceaTranslator.TextableEnum
englishText
- a StringfrenchText
- a Stringpublic java.lang.String toString()
toString
in class java.lang.Enum<Distribution.Type>