org.sbml.jsbml.ext.groups
public enum GroupKind extends java.lang.Enum<GroupKind>
kind
attribute within
a Group
. It has been defined in version 3 of the Groups proposal.Enum Constant and Description |
---|
classification
the group is a class, and its members have an is-a relationship to the group
|
collection
the grouping is one of convenience, without an implied relationship
|
partonomy
the group is a collection of parts, and its members have a part-of relationship to the group
|
Modifier and Type | Method and Description |
---|---|
static GroupKind |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GroupKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GroupKind classification
public static final GroupKind partonomy
public static final GroupKind collection
public static GroupKind[] values()
for (GroupKind c : GroupKind.values()) System.out.println(c);
public static GroupKind 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