public enum RMPrincipalSearchType extends java.lang.Enum<RMPrincipalSearchType>
RMDomain.findGroups
,
RMDomain.findUsers
Enum Constant and Description |
---|
Contains
Indicates that the pattern string must be contained in the search scope.
|
Custom
The caller can pass in a pattern string acceptable by the
underlying directory service in use.
|
Exact
Indicates that the pattern string represents an exact match requirement.
|
None
No pattern matching is used.
|
PrefixMatch
Indicates that the pattern string represents a prefix to match against.
|
SuffixMatch
Indicates that the pattern string represents a suffix to match against.
|
Modifier and Type | Method and Description |
---|---|
static RMPrincipalSearchType |
getInstanceFromInt(int intValue)
Provides the
RMPrincipalSearchType instance that corresponds to the given
int value. |
int |
getIntValue()
Returns the integer value associated with this member.
|
static RMPrincipalSearchType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RMPrincipalSearchType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RMPrincipalSearchType None
public static final RMPrincipalSearchType Custom
public static final RMPrincipalSearchType PrefixMatch
public static final RMPrincipalSearchType SuffixMatch
public static final RMPrincipalSearchType Contains
public static final RMPrincipalSearchType Exact
public static RMPrincipalSearchType[] values()
for (RMPrincipalSearchType c : RMPrincipalSearchType.values()) System.out.println(c);
public static RMPrincipalSearchType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is nullpublic int getIntValue()
int
value.public static RMPrincipalSearchType getInstanceFromInt(int intValue)
RMPrincipalSearchType
instance that corresponds to the given
int
value.intValue
- the int
value to look up.RMPrincipalSearchType
value or null
if no such value
corresponds to the given intValue
parameter.© Copyright IBM Corp. 2010, 2013. All Rights Reserved.