Enum ExpressionFactoryImpl.Profile

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<ExpressionFactoryImpl.Profile>
    Enclosing class:
    ExpressionFactoryImpl

    public static enum ExpressionFactoryImpl.Profile
    extends java.lang.Enum<ExpressionFactoryImpl.Profile>
    A profile provides a default set of language features that will define the builder's behavior. A profile can be adjusted using the javax.el.methodInvocations, javax.el.varArgs and javax.el.nullProperties properties.
    Since:
    2.2
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      JEE5
      JEE5: none
      JEE6
      JEE6: javax.el.methodInvocations, javax.el.varArgs.
    • Constructor Summary

      Constructors 
      Modifier Constructor Description
      private Profile​(java.util.EnumSet<Builder.Feature> features)  
    • Constructor Detail

      • Profile

        private Profile​(java.util.EnumSet<Builder.Feature> features)
    • Method Detail

      • values

        public static ExpressionFactoryImpl.Profile[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (ExpressionFactoryImpl.Profile c : ExpressionFactoryImpl.Profile.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static ExpressionFactoryImpl.Profile valueOf​(java.lang.String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null