I have a following array:
public static Class[] GLOBAL_FEATURE_EXTRACTORS = {
CEDD.class,
AutoColorCorrelogram.class
}
and right now I have a following warning:
Class is a raw type. References to generic type Class<T> should be parameterized
Both CEDD
and AutoColorCorrelogram
classes implements GlobalFeature
interface
How to correctly parameterize Class[]
in order to avoid this warning ?