getSimpleName abstract method
Gets the simple class name without package or generic information.
Returns:
- The base class name (e.g.,
IterableforIterable<String>)
Example:
Class.forType<Iterable<String>>().getSimpleName(); // 'Iterable'
Implementation
String getSimpleName();