public enum TotalSlackCalculationType extends Enum<TotalSlackCalculationType>
Enum Constant and Description |
---|
FINISH_SLACK |
SMALLEST_SLACK |
START_SLACK |
Modifier and Type | Method and Description |
---|---|
static TotalSlackCalculationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TotalSlackCalculationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TotalSlackCalculationType SMALLEST_SLACK
public static final TotalSlackCalculationType START_SLACK
public static final TotalSlackCalculationType FINISH_SLACK
public static TotalSlackCalculationType[] values()
for (TotalSlackCalculationType c : TotalSlackCalculationType.values()) System.out.println(c);
public static TotalSlackCalculationType 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 © 2000–2024 Packwood Software. All rights reserved.