Interface CompareResult
-
- All Superinterfaces:
GenericResult,Result
- All Known Subinterfaces:
UpdatableCompareResult
@NotExtensible @ThreadSafety(level=INTERFACE_NOT_THREADSAFE) public interface CompareResult extends GenericResult
This interface defines a set of methods which may be used to interact with compare results.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EntrygetEntry()Retrieves the entry against which the compare operation was processed, if available.CompareResulttoLDAPSDKResult()Retrieves an LDAP SDK representation of this compare result.-
Methods inherited from interface com.unboundid.directory.sdk.common.operation.GenericResult
getAdditionalLogMessage, getDiagnosticMessage, getMatchedDN, getReferralURLs, getResultCode
-
Methods inherited from interface com.unboundid.directory.sdk.common.operation.Result
getOperationType, getResultControls
-
-
-
-
Method Detail
-
getEntry
Entry getEntry()
Retrieves the entry against which the compare operation was processed, if available.- Returns:
- The entry against which the compare operation was processed, or
nullif the entry is not available.
-
toLDAPSDKResult
CompareResult toLDAPSDKResult()
Retrieves an LDAP SDK representation of this compare result.- Specified by:
toLDAPSDKResultin interfaceGenericResult- Returns:
- An LDAP SDK representation of this compare result.
-
-