public static enum Group.Kind extends Enum<Group.Kind>
kind attribute within
a Group.| Enum Constant and Description |
|---|
classification
The group represents a class, and its members have an is-a relationship to the group.
|
collection
The grouping is merely a collection for convenience, without an implied relationship between the members.
|
partonomy
The group represents a collection of parts, and its members have a part-of relationship to the group.
|
| Modifier and Type | Method and Description |
|---|---|
static Group.Kind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Group.Kind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Group.Kind classification
public static final Group.Kind partonomy
public static final Group.Kind collection
public static Group.Kind[] values()
for (Group.Kind c : Group.Kind.values()) System.out.println(c);
public static Group.Kind 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 © 2009–2020. All rights reserved.