public enum StandardDefuzzifierType extends java.lang.Enum<StandardDefuzzifierType>
Java class for standardDefuzzifierType.
<simpleType name="standardDefuzzifierType"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="MOM"/> <enumeration value="LM"/> <enumeration value="RM"/> <enumeration value="COG"/> <enumeration value="COA"/> </restriction> </simpleType>
Modifier and Type | Method and Description |
---|---|
static StandardDefuzzifierType |
fromValue(java.lang.String v) |
java.lang.String |
value() |
static StandardDefuzzifierType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static StandardDefuzzifierType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StandardDefuzzifierType MOM
public static final StandardDefuzzifierType LM
public static final StandardDefuzzifierType RM
public static final StandardDefuzzifierType COG
public static final StandardDefuzzifierType COA
public static StandardDefuzzifierType[] values()
for (StandardDefuzzifierType c : StandardDefuzzifierType.values()) System.out.println(c);
public static StandardDefuzzifierType 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 java.lang.String value()
public static StandardDefuzzifierType fromValue(java.lang.String v)