I have the following enum how do i map in jna ??
This enum is further referenced in structure.
typedef enum
{
eFtUsbDeviceNotShared,
eFtUsbDeviceSharedActive,
eFtUsbDeviceSharedNotActive,
eFtUsbDeviceSharedNotPlugged,
eFtUsbDeviceSharedProblem
} eFtUsbDeviceStatus;
Abdul Khaliq
The EnumMap class of the Java collections framework provides a map implementation for elements of an enum. In EnumMap , enum elements are used as keys. It implements the Map interface.
Java allows any reference to be null, and references to enums aren't so special that a special case needs to be made to prevent it, or to provide another version of behaviour that is already well-specified and well-understood.
If you're using JNA you probably want to explicitly specify the values of the enumeration in Java. By default, Java's basic enum type doesn't really give you that functionality, you have to add a constructor for an EnumSet (see this and this).
A simple way to encode C enumerations is to use public static final const ints wrapped in a class with the same name as the enum. You get most of the functionality you'd get from a Java enum but slightly less overhead to assign values.
Some good JNA examples, including the snippets below (which were copied) are available here.
Suppose your C code looks like:
enum Values {
First,
Second,
Last
};
Then the Java looks like:
public static interface Values {
public static final int First = 0;
public static final int Second = 1;
public static final int Last = 2;
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With