public enum ModelDisType extends Enum<ModelDisType>
Java class for model_dis_type.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="model_dis_type">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="discrete"/>
<enumeration value="gaussian"/>
<enumeration value="extremevalue"/>
<enumeration value="gamma"/>
<enumeration value="evd"/>
<enumeration value="non-parametric"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
DISCRETE |
EVD |
EXTREMEVALUE |
GAMMA |
GAUSSIAN |
NON_PARAMETRIC |
| Modifier and Type | Method and Description |
|---|---|
static ModelDisType |
fromValue(String v) |
String |
value() |
static ModelDisType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ModelDisType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ModelDisType DISCRETE
public static final ModelDisType GAUSSIAN
public static final ModelDisType EXTREMEVALUE
public static final ModelDisType GAMMA
public static final ModelDisType EVD
public static final ModelDisType NON_PARAMETRIC
public static ModelDisType[] values()
for (ModelDisType c : ModelDisType.values()) System.out.println(c);
public static ModelDisType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String value()
public static ModelDisType fromValue(String v)
Copyright © 2017. All rights reserved.