public enum GroupReduceType extends Enum<GroupReduceType>
Enum Constant and Description |
---|
child
For groups that form a hierarchy, only the child remains
|
parent
For groups that form a hierarchy, only the parent remains
|
Modifier and Type | Method and Description |
---|---|
static GroupReduceType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GroupReduceType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GroupReduceType child
public static final GroupReduceType parent
public static GroupReduceType[] values()
for (GroupReduceType c : GroupReduceType.values()) System.out.println(c);
public static GroupReduceType 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 © 2018 Gentics Software. All rights reserved.