public class Request extends Model {
    public static enum Category {
        First, Second, Third
    }
        public Category category;
}

I seem unable to properly create a Request with a Category in my YAML test fixtures / initial data. I've tried things like:

Request(areq):
    category: Request.Category.Third

And several other variations. Nothing really works. The SnakeYAML page gives me some tantalizing hints but I don't see how to properly reference my app's packages. What is the right syntax for this?

link|improve this question

60% accept rate
feedback

2 Answers

Why don't you use just

...
category: Third

SnakeYAML should recognize type of category and convert Third string to Third value of Category enum during object construction.

link|improve this answer
feedback

To be honest I'm not an experienced user, but I think Request is a bad name, because the class exists in the play-framework. So I would recommend to rename it. But for your problem it's not necessary. Use the complete name, meaning models.Request.Category.Third.

link|improve this answer
1  
I agree with what you've said for the name "Request." This was just an example and not production code, but I should have watched out for that. In any case, this still doesn't seem to be working. – Matthew Leon Dec 12 '10 at 4:33
Hmm, I searched at the google group and found only one example. There was used category: Third. Which makes sense if the binding was done by the name. Don't forget the JPA-Annotation @Enumerated(EnumType.STRING) at your category. – niels Dec 12 '10 at 9:29
feedback

Your Answer

 
or
required, but never shown

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