public enum SelfLinkFilter extends Enum<SelfLinkFilter>
Enum Constant and Description |
---|
NO_FILTER
Both self and non-self are allowed.
|
SELF_LINKS_ONLY
Only self links are allowed.
|
WITHOUT_SELF_LINKS
Only non-self links are allowed.
|
Modifier and Type | Method and Description |
---|---|
static SelfLinkFilter |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SelfLinkFilter[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SelfLinkFilter SELF_LINKS_ONLY
QueryLink.restrictToSelfLinks()
.public static final SelfLinkFilter WITHOUT_SELF_LINKS
QueryLink.withoutSelfLinks()
public static final SelfLinkFilter NO_FILTER
public static SelfLinkFilter[] values()
for (SelfLinkFilter c : SelfLinkFilter.values()) System.out.println(c);
public static SelfLinkFilter 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 null Documentation Feedback
Copyright 2011 - 2018 Micro Focus or one of its affiliates.