|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<ContentSyncRequestMode>
com.unboundid.ldap.sdk.controls.ContentSyncRequestMode
public enum ContentSyncRequestMode
This enum defines the modes which may be used with the content
synchronization request control. See the documentation for the
ContentSyncRequestControl
class for more information about using the
content synchronization operation.
Enum Constant Summary | |
---|---|
REFRESH_AND_PERSIST
Indicates that the client wishes to retrieve information about entries which have changed up to this point, and also to be notified of any additional matching changes in the future. |
|
REFRESH_ONLY
Indicates that the client only wishes to retrieve information about entries which have changed up to this point. |
Method Summary | |
---|---|
int |
intValue()
Retrieves the integer value for this request mode. |
static ContentSyncRequestMode |
valueOf(int intValue)
Retrieves the content synchronization request mode with the specified integer value. |
static ContentSyncRequestMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static ContentSyncRequestMode[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final ContentSyncRequestMode REFRESH_ONLY
public static final ContentSyncRequestMode REFRESH_AND_PERSIST
Method Detail |
---|
public static ContentSyncRequestMode[] values()
for (ContentSyncRequestMode c : ContentSyncRequestMode.values()) System.out.println(c);
public static ContentSyncRequestMode 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 name
java.lang.NullPointerException
- if the argument is nullpublic int intValue()
public static ContentSyncRequestMode valueOf(int intValue)
intValue
- The integer value for which to retrieve the corresponding
request mode.
null
if the given value does not correspond with any
defined mode.
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |