Repository: logging-log4j2 Updated Branches: refs/heads/master 569389ac7 -> 7fcbb0398
Javadoc. Project: http://git-wip-us.apache.org/repos/asf/logging-log4j2/repo Commit: http://git-wip-us.apache.org/repos/asf/logging-log4j2/commit/7fcbb039 Tree: http://git-wip-us.apache.org/repos/asf/logging-log4j2/tree/7fcbb039 Diff: http://git-wip-us.apache.org/repos/asf/logging-log4j2/diff/7fcbb039 Branch: refs/heads/master Commit: 7fcbb0398660ce6b80909d68c0b925952c4a232c Parents: 569389a Author: Gary Gregory <ggreg...@apache.org> Authored: Mon Jan 8 14:50:31 2018 -0700 Committer: Gary Gregory <ggreg...@apache.org> Committed: Mon Jan 8 14:50:31 2018 -0700 ---------------------------------------------------------------------- .../logging/log4j/util/ReadOnlyStringMap.java | 24 ++++++++++---------- 1 file changed, 12 insertions(+), 12 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/7fcbb039/log4j-api/src/main/java/org/apache/logging/log4j/util/ReadOnlyStringMap.java ---------------------------------------------------------------------- diff --git a/log4j-api/src/main/java/org/apache/logging/log4j/util/ReadOnlyStringMap.java b/log4j-api/src/main/java/org/apache/logging/log4j/util/ReadOnlyStringMap.java index 3695aa4..df9a1c8 100644 --- a/log4j-api/src/main/java/org/apache/logging/log4j/util/ReadOnlyStringMap.java +++ b/log4j-api/src/main/java/org/apache/logging/log4j/util/ReadOnlyStringMap.java @@ -29,7 +29,7 @@ public interface ReadOnlyStringMap extends Serializable { /** * Returns a non-{@code null} mutable {@code Map<String, String>} containing a snapshot of this data structure. * - * @return a mutable copy of this data structure in {@code Map<String, String>} form + * @return a mutable copy of this data structure in {@code Map<String, String>} form. */ Map<String, String> toMap(); @@ -37,7 +37,7 @@ public interface ReadOnlyStringMap extends Serializable { * Returns {@code true} if this data structure contains the specified key, {@code false} otherwise. * * @param key the key whose presence to check. May be {@code null}. - * @return {@code true} if this data structure contains the specified key, {@code false} otherwise + * @return {@code true} if this data structure contains the specified key, {@code false} otherwise. */ boolean containsKey(String key); @@ -51,8 +51,8 @@ public interface ReadOnlyStringMap extends Serializable { * {@code ConcurrentModificationException} to be thrown. * </p> * - * @param action The action to be performed for each key-value pair in this collection - * @param <V> type of the value + * @param action The action to be performed for each key-value pair in this collection. + * @param <V> type of the value. * @throws java.util.ConcurrentModificationException some implementations may not support structural modifications * to this data structure while iterating over the contents with {@link #forEach(BiConsumer)} or * {@link #forEach(TriConsumer, Object)}. @@ -73,11 +73,11 @@ public interface ReadOnlyStringMap extends Serializable { * {@code ConcurrentModificationException} to be thrown. * </p> * - * @param action The action to be performed for each key-value pair in this collection + * @param action The action to be performed for each key-value pair in this collection. * @param state the object to be passed as the third parameter to each invocation on the specified - * triconsumer - * @param <V> type of the value - * @param <S> type of the third parameter + * triconsumer. + * @param <V> type of the value. + * @param <S> type of the third parameter. * @throws java.util.ConcurrentModificationException some implementations may not support structural modifications * to this data structure while iterating over the contents with {@link #forEach(BiConsumer)} or * {@link #forEach(TriConsumer, Object)}. @@ -87,21 +87,21 @@ public interface ReadOnlyStringMap extends Serializable { /** * Returns the value for the specified key, or {@code null} if the specified key does not exist in this collection. * - * @param key the key whose value to return - * @return the value for the specified key or {@code null} + * @param key the key whose value to return. + * @return the value for the specified key or {@code null}. */ <V> V getValue(final String key); /** * Returns {@code true} if this collection is empty (size is zero), {@code false} otherwise. - * @return {@code true} if this collection is empty (size is zero) + * @return {@code true} if this collection is empty (size is zero). */ boolean isEmpty(); /** * Returns the number of key-value pairs in this collection. * - * @return the number of key-value pairs in this collection + * @return the number of key-value pairs in this collection. */ int size(); }