S
Steven Davies
Hi,
In my Java project I have a few enum types defined, and classes/objects
that use those enums as attributes.
So I have, for example:
enum Test1 {
ONE,
TWO,
THREE;
}
class testClass {
private Test1 testEnum = THREE;
}
When trying to XMLencode the above code (or something very similar), the
JRE throws exceptions as below:
java.lang.RuntimeException: failed to evaluate: <unbound>=Class.new();
Continuing ...
Does anyone know any way to solve this, or any workarounds for it?
Thanks,
In my Java project I have a few enum types defined, and classes/objects
that use those enums as attributes.
So I have, for example:
enum Test1 {
ONE,
TWO,
THREE;
}
class testClass {
private Test1 testEnum = THREE;
}
When trying to XMLencode the above code (or something very similar), the
JRE throws exceptions as below:
java.lang.RuntimeException: failed to evaluate: <unbound>=Class.new();
Continuing ...
Does anyone know any way to solve this, or any workarounds for it?
Thanks,