public static enum BackendConfigManager.NamingContextFilter extends Enum<BackendConfigManager.NamingContextFilter> implements com.forgerock.opendj.util.Predicate<BackendConfigManager.NamingContext,Void>
Enum Constant and Description |
---|
LOCAL
A naming suffix corresponding to a local backend.
|
PRIVATE
A naming context corresponding to a private backend.
|
PUBLIC
A public naming context (strict opposite of private).
|
TOP_LEVEL
A top-level naming context, which is not a subordinate of another naming context.
|
Modifier and Type | Method and Description |
---|---|
boolean |
matches(BackendConfigManager.NamingContext value,
Void unused)
Indicates whether this predicate matches the provided input value
of type
M . |
static BackendConfigManager.NamingContextFilter |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BackendConfigManager.NamingContextFilter[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BackendConfigManager.NamingContextFilter PRIVATE
public static final BackendConfigManager.NamingContextFilter PUBLIC
public static final BackendConfigManager.NamingContextFilter TOP_LEVEL
public static final BackendConfigManager.NamingContextFilter LOCAL
public static BackendConfigManager.NamingContextFilter[] values()
for (BackendConfigManager.NamingContextFilter c : BackendConfigManager.NamingContextFilter.values()) System.out.println(c);
public static BackendConfigManager.NamingContextFilter 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 nullpublic boolean matches(BackendConfigManager.NamingContext value, Void unused)
com.forgerock.opendj.util.Predicate
M
.matches
in interface com.forgerock.opendj.util.Predicate<BackendConfigManager.NamingContext,Void>
value
- The input value for which to make the determination.unused
- A predicate specified parameter.true
if this predicate matches value
, otherwise
false
.Copyright 2010-2020 ForgeRock AS.