public static enum Transport.SolutionMethod extends Enum<Transport.SolutionMethod>
| Enum Constant and Description |
|---|
InteriorPointMethod
Uses an interior-point method.
|
RevisedSimplexMethod
Uses the revised simplex method.
|
| Modifier and Type | Method and Description |
|---|---|
static Transport.SolutionMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Transport.SolutionMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Transport.SolutionMethod RevisedSimplexMethod
public static final Transport.SolutionMethod InteriorPointMethod
public static Transport.SolutionMethod[] values()
for (Transport.SolutionMethod c : Transport.SolutionMethod.values()) System.out.println(c);
public static Transport.SolutionMethod 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 © 2022 Rogue Wave Software. All rights reserved.