public enum EnumCV_EchoPattern extends java.lang.Enum<EnumCV_EchoPattern>
| Enum Constant and Description |
|---|
ANECHOIC_111361 |
COMPLEX_111363 |
HYPERECHOIC_111362 |
HYPOECHOIC_111364 |
ISOECHOIC_111365 |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
This function returns the String value of this enum.
|
static EnumCV_EchoPattern |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumCV_EchoPattern[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumCV_EchoPattern ANECHOIC_111361
public static final EnumCV_EchoPattern HYPERECHOIC_111362
public static final EnumCV_EchoPattern COMPLEX_111363
public static final EnumCV_EchoPattern HYPOECHOIC_111364
public static final EnumCV_EchoPattern ISOECHOIC_111365
public static EnumCV_EchoPattern[] values()
for (EnumCV_EchoPattern c : EnumCV_EchoPattern.values()) System.out.println(c);
public static EnumCV_EchoPattern 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 getValue()