The map key type. @throws IllegalStateException if #isRawType() is true.
()
| 58 | * @throws IllegalStateException if {@link #isRawType()} is true. |
| 59 | */ |
| 60 | TypeMirror keyType() { |
| 61 | checkState(!isRawType()); |
| 62 | return declaredMapType().getTypeArguments().get(0); |
| 63 | } |
| 64 | |
| 65 | /** |
| 66 | * The map value type. |
no test coverage detected