public enum GroupKind extends 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(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(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–2016. All rights reserved.