Returns a human-readable string representation of {@code type}. <p>The format is subject to change.
(Type type)
| 160 | * <p>The format is subject to change. |
| 161 | */ |
| 162 | static String toString(Type type) { |
| 163 | return (type instanceof Class) ? ((Class<?>) type).getName() : type.toString(); |
| 164 | } |
| 165 | |
| 166 | static @Nullable Type getComponentType(Type type) { |
| 167 | checkNotNull(type); |