Factory method for creating instances of Key. @param debugString a string used to describe the key, used for debugging. @param Key type @return Key object @deprecated use #create instead. This method will be removed in the future.
(String debugString)
| 137 | * @deprecated use {@link #create} instead. This method will be removed in the future. |
| 138 | */ |
| 139 | @Deprecated |
| 140 | public static <T> Key<T> of(String debugString) { |
| 141 | return new Key<>(debugString); |
| 142 | } |
| 143 | |
| 144 | /** |
| 145 | * Factory method for creating instances of {@link Key}. |
nothing calls this directly
no outgoing calls
no test coverage detected