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