Class Data Registries
Class data registries are objects that are instances of HashMap<String, Class<?>>
, meaning that it's a table of key-value pairs where strings are the keys while Java classes are the values for the keys. It can be used to map the string into a Java class using the ClassDataRegistry#mapStringToClass
method.