Javolution 6.0.0 java
javolution.lang.Realtime.Limit Enum Reference

Public Attributes

 CONSTANT
 
 LOG_N
 
 LINEAR
 
 N_LOG_N
 
 N_SQUARE
 
 UNKNOWN
 

Detailed Description

Identifies the limit behavior for the worst case execution time.

Definition at line 81 of file Realtime.java.

Member Data Documentation

◆ CONSTANT

javolution.lang.Realtime.Limit.CONSTANT

The worst case execution time is constant.

Definition at line 86 of file Realtime.java.

◆ LINEAR

javolution.lang.Realtime.Limit.LINEAR

The worst case execution time is bounded in O(n) with n characteristic of the current size of the inputs.

Definition at line 98 of file Realtime.java.

◆ LOG_N

javolution.lang.Realtime.Limit.LOG_N

The worst case execution time is bounded in O(log(n)) with n characteristic of the current size of the inputs.

Definition at line 92 of file Realtime.java.

◆ N_LOG_N

javolution.lang.Realtime.Limit.N_LOG_N

The worst case execution time is bounded in O(n log(n)) with n characteristic of the current size of the inputs.

Definition at line 104 of file Realtime.java.

◆ N_SQUARE

javolution.lang.Realtime.Limit.N_SQUARE

The worst case execution time is bounded in O(n²) with n characteristic of the current size of the inputs.

Definition at line 110 of file Realtime.java.

◆ UNKNOWN

javolution.lang.Realtime.Limit.UNKNOWN

The limit behavior of the worst case execution time is unknown or unspecified.

Definition at line 116 of file Realtime.java.


The documentation for this enum was generated from the following file: