vote up 1 vote down star

I'm wondering how in MATLAB you can get a reference to a Java enum or static public field. In MATLAB, if you are trying to use Java objects/methods, there are equivalents to Java object creation / method call / etc.:

Java: new com.example.test.Foo();

MATLAB: javaObject('com.example.test.Foo');

Java: com.example.test.Foo.staticMethod();

MATLAB: javaMethod('staticMethod', 'com.example.test.Foo');

Java: SomeEnum e = com.example.test.SomeEnum.MY_FAVORITE_ENUM;

MATLAB: ?????

Java: int n = com.example.test.Foo.MAX_FOO;

MATLAB: ?????

flag

56% accept rate
I assume you can't edit the Java Enum? – Instantsoup Aug 3 at 18:26
in some cases I can, in some I can't – Jason S Aug 3 at 18:26
this is the flip side to type-safe enums: instead of calling loadWeirdFile('myfile.txt', 1) which has magic numbers but is easy, I call loadWeirdFile('myfile.txt', Options.SKIP_WEIRD_STUFF) which has no magic numbers and is type-safe, but I can't access the SKIP_WEIRD_STUFF constant from my scripting environment. :( – Jason S Aug 3 at 18:29
(that's not the exact function I'm calling, but you get the point) – Jason S Aug 3 at 18:29

2 Answers

vote up 4 vote down check

You can reference Java enum constants from Matlab using the package.class.FIELD syntax, as with any other static Java field. Let's say you have an enum.

package com.example;
public enum MyEnum {
    FOO, BAR, BAZ
}

You can get at the enum constants in Matlab using a direct reference. (The Java classes must be in Matlab's javaclasspath, of course.)

% Static reference
foo = com.example.MyEnum.FOO

% Import it if you want to omit the package name
import com.example.MyEnum;
foo = MyEnum.FOO
bar = MyEnum.BAR

If you want a "dynamic" reference determined at runtime, you can just build a string containing the equivalent static reference and pass it to eval(). This works on almost any Matlab code.

% Dynamic reference
foo = eval('com.example.MyEnum.FOO')

And if you want to get really fancy, you can use Java reflection to get at all the enumerated constants at run time. Make a thin wrapper to put with your other custom classes to get around quirks with Matlab's classloader. (There's no Matlab javaClass() equivalent; IMHO this is a Matlab oversight.)

//In Java
package com.example;
public class Reflector {
    public static Class forName(String className) throws Exception {
        return Class.forName(className);
    }
}

Then you can enumerate the constants in Matlab.

% Constant enumeration using reflection
klass = com.example.Reflector.forName('com.example.MyEnum');
enums = klass.getEnumConstants();
link|flag
very well-stated, thanks! – Jason S Aug 4 at 17:03
vote up 3 vote down

EDIT: From here it sounds like the regular way would just work. Or are Enums different than other classes with statics for some reason?

Can you call a Java method with parameters?

SomeEnum e = com.example.test.SomeEnum.valueOf(SomeEnum.class, "MY_FAVORITE_ENUM")
link|flag
oh, that would work. I guess that's a workaround for enums. – Jason S Aug 3 at 18:20
Wait: no, that wouldn't work. I still have to get a reference to SomeEnum.class which is a public static field. ARGH! – Jason S Aug 3 at 18:22
w/r/t your updated link to "Accessing Private and Public Fields" -- I guess that does work for fields "directly" accessed in MATLAB, e.g. com.example.test.Myfield.FIELD_VAL, I was hoping I could get it based on a dynamic string e.g. fieldval = javaField('com.example.test.Myfield.FIELD_VAL') which doesn't seem like it's possible. – Jason S Aug 3 at 19:27

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.