public static enum GoRelationship.Type extends java.lang.Enum<GoRelationship.Type>
Enum Constant and Description |
---|
HAS_PART |
NEGATIVELY_REGULATES |
OCCURS_IN |
PART_OF |
POSITIVELY_REGULATES |
REGULATES |
Modifier and Type | Method and Description |
---|---|
static GoRelationship.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GoRelationship.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GoRelationship.Type PART_OF
public static final GoRelationship.Type REGULATES
public static final GoRelationship.Type NEGATIVELY_REGULATES
public static final GoRelationship.Type POSITIVELY_REGULATES
public static final GoRelationship.Type HAS_PART
public static final GoRelationship.Type OCCURS_IN
public static GoRelationship.Type[] values()
for (GoRelationship.Type c : GoRelationship.Type.values()) System.out.println(c);
public static GoRelationship.Type valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null