javadocs fixed

pull/3118/head
Nikita Koksharov 4 years ago
parent a16d27ee88
commit a09c5d4ee8

@ -401,7 +401,10 @@ public interface RMap<K, V> extends ConcurrentMap<K, V>, RExpirable, RMapAsync<K
* Returns key set of this map.
* If <code>pattern</code> is not null then only keys match this pattern are loaded.
* Keys are loaded in batch. Batch size is defined by <code>count</code> param.
*
* <p>
* Use <code>org.redisson.client.codec.StringCodec</code> for Map keys.
* <p>
*
* Supported glob-style patterns:
* <p>
* h?llo subscribes to hello, hallo and hxllo
@ -421,7 +424,10 @@ public interface RMap<K, V> extends ConcurrentMap<K, V>, RExpirable, RMapAsync<K
/**
* Returns key set of this map.
* If <code>pattern</code> is not null then only keys match this pattern are loaded.
*
* <p>
* Use <code>org.redisson.client.codec.StringCodec</code> for Map keys.
* <p>
*
* Supported glob-style patterns:
* <p>
* h?llo subscribes to hello, hallo and hxllo
@ -452,7 +458,10 @@ public interface RMap<K, V> extends ConcurrentMap<K, V>, RExpirable, RMapAsync<K
* Returns values collection of this map.
* Values are loaded in batch. Batch size is <code>10</code>.
* If <code>keyPattern</code> is not null then only values mapped by matched keys of this pattern are loaded.
*
* <p>
* Use <code>org.redisson.client.codec.StringCodec</code> for Map keys.
* <p>
*
* Supported glob-style patterns:
* <p>
* h?llo subscribes to hello, hallo and hxllo
@ -472,7 +481,10 @@ public interface RMap<K, V> extends ConcurrentMap<K, V>, RExpirable, RMapAsync<K
* Returns values collection of this map.
* Values are loaded in batch. Batch size is defined by <code>count</code> param.
* If <code>keyPattern</code> is not null then only values mapped by matched keys of this pattern are loaded.
*
* <p>
* Use <code>org.redisson.client.codec.StringCodec</code> for Map keys.
* <p>
*
* Supported glob-style patterns:
* <p>
* h?llo subscribes to hello, hallo and hxllo

@ -421,7 +421,10 @@ public interface RMapReactive<K, V> extends RExpirableReactive {
* Returns iterator over values collection of this map.
* Values are loaded in batch. Batch size is <code>10</code>.
* If <code>keyPattern</code> is not null then only values mapped by matched keys of this pattern are loaded.
*
* <p>
* Use <code>org.redisson.client.codec.StringCodec</code> for Map keys.
* <p>
*
* Supported glob-style patterns:
* <p>
* h?llo subscribes to hello, hallo and hxllo
@ -441,7 +444,10 @@ public interface RMapReactive<K, V> extends RExpirableReactive {
* Returns iterator over values collection of this map.
* Values are loaded in batch. Batch size is defined by <code>count</code> param.
* If <code>keyPattern</code> is not null then only values mapped by matched keys of this pattern are loaded.
*
* <p>
* Use <code>org.redisson.client.codec.StringCodec</code> for Map keys.
* <p>
*
* Supported glob-style patterns:
* <p>
* h?llo subscribes to hello, hallo and hxllo
@ -482,7 +488,10 @@ public interface RMapReactive<K, V> extends RExpirableReactive {
/**
* Returns iterator over key set of this map.
* If <code>pattern</code> is not null then only keys match this pattern are loaded.
*
* <p>
* Use <code>org.redisson.client.codec.StringCodec</code> for Map keys.
* <p>
*
* Supported glob-style patterns:
* <p>
* h?llo subscribes to hello, hallo and hxllo
@ -502,7 +511,10 @@ public interface RMapReactive<K, V> extends RExpirableReactive {
* Returns iterator over key set of this map.
* If <code>pattern</code> is not null then only keys match this pattern are loaded.
* Keys are loaded in batch. Batch size is defined by <code>count</code> param.
*
* <p>
* Use <code>org.redisson.client.codec.StringCodec</code> for Map keys.
* <p>
*
* Supported glob-style patterns:
* <p>
* h?llo subscribes to hello, hallo and hxllo

@ -424,7 +424,10 @@ public interface RMapRx<K, V> extends RExpirableRx {
* Returns iterator over values collection of this map.
* Values are loaded in batch. Batch size is <code>10</code>.
* If <code>keyPattern</code> is not null then only values mapped by matched keys of this pattern are loaded.
*
* <p>
* Use <code>org.redisson.client.codec.StringCodec</code> for Map keys.
* <p>
*
* Supported glob-style patterns:
* <p>
* h?llo subscribes to hello, hallo and hxllo
@ -444,7 +447,10 @@ public interface RMapRx<K, V> extends RExpirableRx {
* Returns iterator over values collection of this map.
* Values are loaded in batch. Batch size is defined by <code>count</code> param.
* If <code>keyPattern</code> is not null then only values mapped by matched keys of this pattern are loaded.
*
* <p>
* Use <code>org.redisson.client.codec.StringCodec</code> for Map keys.
* <p>
*
* Supported glob-style patterns:
* <p>
* h?llo subscribes to hello, hallo and hxllo
@ -485,7 +491,10 @@ public interface RMapRx<K, V> extends RExpirableRx {
/**
* Returns iterator over key set of this map.
* If <code>pattern</code> is not null then only keys match this pattern are loaded.
*
* <p>
* Use <code>org.redisson.client.codec.StringCodec</code> for Map keys.
* <p>
*
* Supported glob-style patterns:
* <p>
* h?llo subscribes to hello, hallo and hxllo
@ -505,7 +514,10 @@ public interface RMapRx<K, V> extends RExpirableRx {
* Returns iterator over key set of this map.
* If <code>pattern</code> is not null then only keys match this pattern are loaded.
* Keys are loaded in batch. Batch size is defined by <code>count</code> param.
*
* <p>
* Use <code>org.redisson.client.codec.StringCodec</code> for Map keys.
* <p>
*
* Supported glob-style patterns:
* <p>
* h?llo subscribes to hello, hallo and hxllo

Loading…
Cancel
Save