| Annotation Type | Description |
|---|---|
| Beta |
Marker interface to indicate that a public API may change or be removed in
the future.
|
| ConstantTime |
Marker interface to indicate that an operation takes constant time.
|
| LinearTime |
Marker interface to indicate that an operation takes O(n) time where n is the
size of the input.
|
| LogarithmicTime |
Marker interface to indicate that an operation takes O(log(n)) time where n
is the size of the input.
|
| LogLogTime |
Marker interface to indicate that an operation takes O(loglog(n)) time where
n is the size of the input.
|
| VisibleForTesting |
Marker interface to indicate that something is visible as package-private
only for testing purposes.
|
Copyright © 2018. All rights reserved.