File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
src/main/java/com/nordstrom/common/file Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -62,6 +62,7 @@ public T getType() {
62
62
* Add the specified mapping to the collection.<br>
63
63
* <b>NOTE</b>: If a mapping for the specified constant already exists, this mapping will be replaced.
64
64
*
65
+ * @param <U> an operating system mapping enumeration that implements the {@link OSProps} interface
65
66
* @param typeConst OS type constant
66
67
* @return value of previous mapping; 'null' if no mapping existed
67
68
*/
@@ -74,6 +75,7 @@ public <U extends Enum<U> & OSProps> String put(U typeConst) {
74
75
* Add the specified mapping to the collection.<br>
75
76
* <b>NOTE</b>: If a mapping for the specified constant already exists, this mapping will be replaced.
76
77
*
78
+ * @param <U> an operating system mapping enumeration that implements the {@link OSProps} interface
77
79
* @param typeConst OS type constant
78
80
* @param pattern OS name match pattern
79
81
* @return value of previous mapping; 'null' if no mapping existed
@@ -87,6 +89,7 @@ public <U extends Enum<U> & OSProps> String put(U typeConst, String pattern) {
87
89
* Add the mappings defined by the specified enumeration to the collection.<br>
88
90
* <b>NOTE</b>: If any of the specified mappings already exist, the previous mappings will be replaced.
89
91
*
92
+ * @param <U> an operating system mapping enumeration that implements the {@link OSProps} interface
90
93
* @param enumClass operating system mapping enumeration
91
94
*/
92
95
public <U extends Enum <U > & OSProps > void putAll (Class <U > enumClass ) {
You can’t perform that action at this time.
0 commit comments