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