public static enum BaseCalc.algorithm_t extends Enum<BaseCalc.algorithm_t>
Enum Constant and Description |
---|
INDEPENDENT |
PARTICLE |
SHARED |
Modifier and Type | Method and Description |
---|---|
static BaseCalc.algorithm_t |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BaseCalc.algorithm_t[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BaseCalc.algorithm_t INDEPENDENT
public static final BaseCalc.algorithm_t SHARED
public static final BaseCalc.algorithm_t PARTICLE
public static BaseCalc.algorithm_t[] values()
for (BaseCalc.algorithm_t c : BaseCalc.algorithm_t.values()) System.out.println(c);
public static BaseCalc.algorithm_t 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 © 2019. All rights reserved.