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