ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/jdk7/java/util/concurrent/ConcurrentHashMap.java
(Generate patch)

Comparing jsr166/src/jdk7/java/util/concurrent/ConcurrentHashMap.java (file contents):
Revision 1.9 by jsr166, Sat Jan 19 20:39:43 2013 UTC vs.
Revision 1.10 by jsr166, Mon Jan 28 06:58:51 2013 UTC

# Line 3370 | Line 3370 | public class ConcurrentHashMap<K, V>
3370       * of each (key, value).
3371       *
3372       * @param transformer a function returning the transformation
3373 <     * for an element, or null of there is no transformation (in
3373 >     * for an element, or null if there is no transformation (in
3374       * which case the action is not applied).
3375       * @param action the action
3376       */
# Line 3414 | Line 3414 | public class ConcurrentHashMap<K, V>
3414       * combine values, or null if none.
3415       *
3416       * @param transformer a function returning the transformation
3417 <     * for an element, or null of there is no transformation (in
3417 >     * for an element, or null if there is no transformation (in
3418       * which case it is not combined).
3419       * @param reducer a commutative associative combining function
3420       * @return the result of accumulating the given transformation
# Line 3527 | Line 3527 | public class ConcurrentHashMap<K, V>
3527       * of each key.
3528       *
3529       * @param transformer a function returning the transformation
3530 <     * for an element, or null of there is no transformation (in
3530 >     * for an element, or null if there is no transformation (in
3531       * which case the action is not applied).
3532       * @param action the action
3533       */
# Line 3592 | Line 3592 | public class ConcurrentHashMap<K, V>
3592       * null if none.
3593       *
3594       * @param transformer a function returning the transformation
3595 <     * for an element, or null of there is no transformation (in
3595 >     * for an element, or null if there is no transformation (in
3596       * which case it is not combined).
3597       * @param reducer a commutative associative combining function
3598       * @return the result of accumulating the given transformation
# Line 3705 | Line 3705 | public class ConcurrentHashMap<K, V>
3705       * of each value.
3706       *
3707       * @param transformer a function returning the transformation
3708 <     * for an element, or null of there is no transformation (in
3708 >     * for an element, or null if there is no transformation (in
3709       * which case the action is not applied).
3710       */
3711      public <U> void forEachValueSequentially
# Line 3765 | Line 3765 | public class ConcurrentHashMap<K, V>
3765       * null if none.
3766       *
3767       * @param transformer a function returning the transformation
3768 <     * for an element, or null of there is no transformation (in
3768 >     * for an element, or null if there is no transformation (in
3769       * which case it is not combined).
3770       * @param reducer a commutative associative combining function
3771       * @return the result of accumulating the given transformation
# Line 3879 | Line 3879 | public class ConcurrentHashMap<K, V>
3879       * of each entry.
3880       *
3881       * @param transformer a function returning the transformation
3882 <     * for an element, or null of there is no transformation (in
3882 >     * for an element, or null if there is no transformation (in
3883       * which case the action is not applied).
3884       * @param action the action
3885       */
# Line 3942 | Line 3942 | public class ConcurrentHashMap<K, V>
3942       * or null if none.
3943       *
3944       * @param transformer a function returning the transformation
3945 <     * for an element, or null of there is no transformation (in
3945 >     * for an element, or null if there is no transformation (in
3946       * which case it is not combined).
3947       * @param reducer a commutative associative combining function
3948       * @return the result of accumulating the given transformation
# Line 4054 | Line 4054 | public class ConcurrentHashMap<K, V>
4054       * of each (key, value).
4055       *
4056       * @param transformer a function returning the transformation
4057 <     * for an element, or null of there is no transformation (in
4057 >     * for an element, or null if there is no transformation (in
4058       * which case the action is not applied).
4059       * @param action the action
4060       */
# Line 4089 | Line 4089 | public class ConcurrentHashMap<K, V>
4089       * combine values, or null if none.
4090       *
4091       * @param transformer a function returning the transformation
4092 <     * for an element, or null of there is no transformation (in
4092 >     * for an element, or null if there is no transformation (in
4093       * which case it is not combined).
4094       * @param reducer a commutative associative combining function
4095       * @return the result of accumulating the given transformation
# Line 4177 | Line 4177 | public class ConcurrentHashMap<K, V>
4177       * of each key.
4178       *
4179       * @param transformer a function returning the transformation
4180 <     * for an element, or null of there is no transformation (in
4180 >     * for an element, or null if there is no transformation (in
4181       * which case the action is not applied).
4182       * @param action the action
4183       */
# Line 4226 | Line 4226 | public class ConcurrentHashMap<K, V>
4226       * null if none.
4227       *
4228       * @param transformer a function returning the transformation
4229 <     * for an element, or null of there is no transformation (in
4229 >     * for an element, or null if there is no transformation (in
4230       * which case it is not combined).
4231       * @param reducer a commutative associative combining function
4232       * @return the result of accumulating the given transformation
# Line 4314 | Line 4314 | public class ConcurrentHashMap<K, V>
4314       * of each value.
4315       *
4316       * @param transformer a function returning the transformation
4317 <     * for an element, or null of there is no transformation (in
4317 >     * for an element, or null if there is no transformation (in
4318       * which case the action is not applied).
4319       */
4320      public <U> void forEachValueInParallel
# Line 4361 | Line 4361 | public class ConcurrentHashMap<K, V>
4361       * null if none.
4362       *
4363       * @param transformer a function returning the transformation
4364 <     * for an element, or null of there is no transformation (in
4364 >     * for an element, or null if there is no transformation (in
4365       * which case it is not combined).
4366       * @param reducer a commutative associative combining function
4367       * @return the result of accumulating the given transformation
# Line 4449 | Line 4449 | public class ConcurrentHashMap<K, V>
4449       * of each entry.
4450       *
4451       * @param transformer a function returning the transformation
4452 <     * for an element, or null of there is no transformation (in
4452 >     * for an element, or null if there is no transformation (in
4453       * which case the action is not applied).
4454       * @param action the action
4455       */
# Line 4497 | Line 4497 | public class ConcurrentHashMap<K, V>
4497       * or null if none.
4498       *
4499       * @param transformer a function returning the transformation
4500 <     * for an element, or null of there is no transformation (in
4500 >     * for an element, or null if there is no transformation (in
4501       * which case it is not combined).
4502       * @param reducer a commutative associative combining function
4503       * @return the result of accumulating the given transformation

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines