I am writing on a DML file the next source of code:
enum Permission;
It generate a file .java
where it will generate this error:
excepting "class", found 'enum'
I also tried to code other sample of my DML file function as well as:
enum Permission{
OWNER,
ROOT,
READ,
WRITE,
READWRITE
}
And it has the same error.