1 Reply Latest reply on Nov 8, 2016 2:44 AM by arthurborsboom

    Wildfly - Expression Language & enums

    arthurborsboom

      As an example, I have an enum

       

      public enum BooleanValues {
      TRUE,
      FALSE
      }

       

      When I call the enum by EL:

       

      ${BooleanValues.TRUE}

       

      It should call the name() or toString() method (one of the two), however it returns an empty string.

      Is this an issue with Wildfly 10.1?