Enum-Properties on Elements such as the `audiotestsrc`Element can currently only be set via their numeric value: ``` pipeline.getElementByName("test_src").set("wave", 4); ``` It would be very helpful to be also able to use the literal Enum-Value: ``` pipeline.getElementByName("test_src").set("wave", "silence"); ```