Class ResultCodeInfo
java.lang.Object
com.unboundid.ldap.sdk.unboundidds.monitors.ResultCodeInfo
- All Implemented Interfaces:
Serializable
@NotMutable
@ThreadSafety(level=COMPLETELY_THREADSAFE)
public final class ResultCodeInfo
extends Object
implements Serializable
This class provides a data structure that encapsulates information about a
result code included in the result code monitor entry.
NOTE: This class, and other classes within the
com.unboundid.ldap.sdk.unboundidds package structure, are only
supported for use against Ping Identity, UnboundID, and
Nokia/Alcatel-Lucent 8661 server products. These classes provide support
for proprietary functionality or for external specifications that are not
considered stable or mature enough to be guaranteed to work in an
interoperable way with other types of LDAP servers.
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptiondoubleThe average response time, in milliseconds, for all operations of the associated type (or of all operations if the operation type isnull) with this result code.longgetCount()The total number of operations of the associated type (or of all operations if the operation type isnull) with this result code.getName()Retrieves the name for this result code.Retrieves the type of operation with which the result code statistics are associated, if appropriate.doubleThe percent of operations of the associated type (or of all operations if the operation type isnull) with this result code.doubleThe sum of the response times, in milliseconds, for all operations of the associated type (or of all operations if the operation type isnull) with this result code.intintValue()Retrieves the integer value for this result code.
-
Method Details
-
intValue
Retrieves the integer value for this result code.- Returns:
- The integer value for this result code.
-
getName
Retrieves the name for this result code.- Returns:
- The name for this result code.
-
getOperationType
Retrieves the type of operation with which the result code statistics are associated, if appropriate.- Returns:
- The type of operation with which the result code statistics are
associated, or
nullif the statistics apply to all types of operations.
-
getCount
The total number of operations of the associated type (or of all operations if the operation type isnull) with this result code.- Returns:
- The total number of operations of the associated type with this result code.
-
getPercent
The percent of operations of the associated type (or of all operations if the operation type isnull) with this result code.- Returns:
- The percent of operations of the associated type with this result code.
-
getTotalResponseTimeMillis
The sum of the response times, in milliseconds, for all operations of the associated type (or of all operations if the operation type isnull) with this result code.- Returns:
- The sum of the response times, in milliseconds, for all operations of the associated type with this result code.
-
getAverageResponseTimeMillis
The average response time, in milliseconds, for all operations of the associated type (or of all operations if the operation type isnull) with this result code.- Returns:
- The average response time, in milliseconds, for all operations of the associated type with this result code.
-