The map value type. @throws IllegalStateException if #isRawType() is true.
()
| 68 | * @throws IllegalStateException if {@link #isRawType()} is true. |
| 69 | */ |
| 70 | TypeMirror valueType() { |
| 71 | checkState(!isRawType()); |
| 72 | return declaredMapType().getTypeArguments().get(1); |
| 73 | } |
| 74 | |
| 75 | /** |
| 76 | * {@code true} if {@link #valueType()} is a {@code clazz}. |
no test coverage detected