Convert an object to the Identity wrapper for that object that does identity comparison. @param The type of object for which the identity is being returned @param value The value for which the identity is being returned @return The Identity object for the given parameter
(T value)
| 75 | * @return The Identity object for the given parameter |
| 76 | */ |
| 77 | public static <T> Identity<T> valueOf(T value) |
| 78 | { |
| 79 | return new Identity<>(value); |
| 80 | } |
| 81 | |
| 82 | } |
no outgoing calls