public enum RMPrincipalSearchAttribute extends java.lang.Enum<RMPrincipalSearchAttribute>
RMDomain.findGroups
,
RMDomain.findUsers
Enum Constant and Description |
---|
DisplayName
Specifies that the search pattern is applied against the display name attribute.
|
None
Specifies that no identifying attribute is used for the search pattern.
|
ShortName
Specifies that the search pattern is applied against the short name attribute.
|
Modifier and Type | Method and Description |
---|---|
static RMPrincipalSearchAttribute |
getInstanceFromInt(int intValue)
Provides the
RMPrincipalSearchAttribute instance that corresponds to the given
int value. |
int |
getIntValue()
Returns the integer value associated with this member.
|
static RMPrincipalSearchAttribute |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RMPrincipalSearchAttribute[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RMPrincipalSearchAttribute None
public static final RMPrincipalSearchAttribute ShortName
public static final RMPrincipalSearchAttribute DisplayName
public static RMPrincipalSearchAttribute[] values()
for (RMPrincipalSearchAttribute c : RMPrincipalSearchAttribute.values()) System.out.println(c);
public static RMPrincipalSearchAttribute 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 RMPrincipalSearchAttribute getInstanceFromInt(int intValue)
RMPrincipalSearchAttribute
instance that corresponds to the given
int
value.intValue
- the int
value to look up.RMPrincipalSearchAttribute
value or null
if no such value
corresponds to the given intValue
parameter.© Copyright IBM Corp. 2010, 2013. All Rights Reserved.