public static enum AlgorithmProperty.PropertyType extends Enum<AlgorithmProperty.PropertyType>
| Enum Constant and Description |
|---|
DOUBLE
Tipo Real.
|
STRING
Tipo Texto.
|
| Modifier and Type | Method and Description |
|---|---|
static AlgorithmProperty.PropertyType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AlgorithmProperty.PropertyType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AlgorithmProperty.PropertyType STRING
public static final AlgorithmProperty.PropertyType DOUBLE
public static AlgorithmProperty.PropertyType[] values()
for (AlgorithmProperty.PropertyType c : AlgorithmProperty.PropertyType.values()) System.out.println(c);
public static AlgorithmProperty.PropertyType 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 nullCopyright © 2018. All rights reserved.