Hi I have a class SomeClass and a private map that I want to have in values list of objects A and B where B extends A.
The below code doesnt compile.. I cant change anything in class name, it must be left like:
public class SomeClass {
<T extends ParentObject> Map<SignedOperationNameEnum, List<T>> operationToOrderStateSkipSignatureSetMap = new HashMap<>();
}
SomeClass<T extends ParentObject>