public enum IncludeGroups extends Enum<IncludeGroups> implements HasName
| Enum Constant and Description |
|---|
CHILD
Include Children groups in the query results.
|
DIRECT
Directly related groups only in the query results.
|
PARENT
Include Parent groups in the query results.
|
PARENT_AND_CHILD
Include Parent and Children groups in the query results.
|
UNKNOWN
Fallback when enumeration value is unknown.
|
| Modifier and Type | Method and Description |
|---|---|
String |
getName() |
static IncludeGroups |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IncludeGroups[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IncludeGroups UNKNOWN
public static final IncludeGroups CHILD
public static final IncludeGroups PARENT
public static final IncludeGroups PARENT_AND_CHILD
public static final IncludeGroups DIRECT
public static IncludeGroups[] values()
for (IncludeGroups c : IncludeGroups.values()) System.out.println(c);
public static IncludeGroups 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 © 2023. All rights reserved.