You have no direct way to do this. If it is inside the same class that you need, you can try adding a static element containing a reference to the class.
static private const CLASS:Object = YourReflectedClass;
then just use this in your static method:
protected static function doReflection(): void { var className:String = getQualifiedClassName(CLASS); }
It would be helpful to know more about usage and customization.
source share