How can i print "GlobalScope" enum name?

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By hashak

Sorry for bad English.

For example, If i write enum by myself, like this

enum STATUS {DONE, UNDONE}
var status: int = STATUS.DONE

func _ready() -> void:
    print(STATUS.keys()[status])

this print “DONE”.

If i write

func _ready() -> void:
    print(typeof(10))

this print “2”.

Is it possible print GlobalScope enum name (TYPE_INT) instead of the number? or, How can i access to GlobalScope enum name?