annotation « validation « JSF Q&A





1. custom validator for annotation type in java    stackoverflow.com

I have enum:

public enum Animal {
    DOG,
    CAT,
    BIRD,
    HORSE,
    COW;

}
and List, where i have ...