> A instantiation of a generic type where all type arguments are concrete type rather than wildcards. Examples of concrete parameterized types are `List<String>` or `Map<String, Date>`, not `List<? extends Number>` or `Map<String, ?>`.