Create a Key with the given debug name. @param debugString a name intended for debugging purposes and does not impact behavior. Multiple different keys may have the same debugString. The value should be not null.
(String debugString)
| 147 | * The value should be not null. |
| 148 | */ |
| 149 | public static <T> Key<T> key(String debugString) { |
| 150 | return new Key<>(debugString); |
| 151 | } |
| 152 | |
| 153 | /** |
| 154 | * Create a {@link Key} with the given debug name and default value. |
no outgoing calls