I want to use Enum as a key value. I tired this:
public interface ElementTypeEnum
{
public static String QUEUE_TRANSACTION = "queue_transaction";
public static String QUEUE_API_ATTEMPT = "queue_api_attempt";
}
but when I tried to use it this way: QUEUE_TRANSACTIONs cannot be resolved or is not a field
What is the proper way to use it?