Javadoc
This commit is contained in:
parent
908a79dc8c
commit
fe2a01be4c
|
@ -956,7 +956,7 @@ public abstract class AbstractReferenceMap<K, V> extends AbstractHashedMap<K, V>
|
|||
* A soft reference holder.
|
||||
*/
|
||||
static class SoftRef<T> extends SoftReference<T> {
|
||||
/** the hashCode of the key (even if the reference points to a value) */
|
||||
/** The hashCode of the key (even if the reference points to a value) */
|
||||
private final int hash;
|
||||
|
||||
SoftRef(final int hash, final T r, final ReferenceQueue<? super T> q) {
|
||||
|
@ -989,7 +989,7 @@ public abstract class AbstractReferenceMap<K, V> extends AbstractHashedMap<K, V>
|
|||
* A weak reference holder.
|
||||
*/
|
||||
static class WeakRef<T> extends WeakReference<T> {
|
||||
/** the hashCode of the key (even if the reference points to a value) */
|
||||
/** The hashCode of the key (even if the reference points to a value) */
|
||||
private final int hash;
|
||||
|
||||
WeakRef(final int hash, final T r, final ReferenceQueue<? super T> q) {
|
||||
|
|
|
@ -79,7 +79,7 @@ public class PassiveExpiringMap<K, V>
|
|||
/** Serialization version */
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/** the constant time-to-live value measured in milliseconds. */
|
||||
/** The constant time-to-live value measured in milliseconds. */
|
||||
private final long timeToLiveMillis;
|
||||
|
||||
/**
|
||||
|
@ -198,7 +198,7 @@ public class PassiveExpiringMap<K, V>
|
|||
/** map used to manage expiration times for the actual map entries. */
|
||||
private final Map<Object, Long> expirationMap = new HashMap<>();
|
||||
|
||||
/** the policy used to determine time-to-live values for map entries. */
|
||||
/** The policy used to determine time-to-live values for map entries. */
|
||||
private final ExpirationPolicy<K, V> expiringPolicy;
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue