In java I have:
public class MyClass{ public enum STATUS { ZERO, ONE , TWO } public native STATUS nativeGetStatus();
Of course, you can do it. Enum values are public static fields of Enum class, so you can use this official manual to write the code. Just get the field from JNI and return it as jobject.