Enum JexlUberspect.JexlResolver

    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      CONTAINER
      Seeks a getContainer(property) and setContainer(property, value) as in x.container.property.
      DUCK
      Seeks any get/{set,put} method (quacking like a list or a map).
      FIELD
      Seeks public instance members.
      LIST
      Seeks list methods get/set.
      MAP
      Seeks map methods get/put.
      PROPERTY
      Seeks methods named get{P,p}property and is{P,p}property.
    • Constructor Summary

      Constructors 
      Modifier Constructor Description
      private JexlResolver()  
    • Constructor Detail

      • JexlResolver

        private JexlResolver()
    • Method Detail

      • values

        public static JexlUberspect.JexlResolver[] 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 (JexlUberspect.JexlResolver c : JexlUberspect.JexlResolver.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static JexlUberspect.JexlResolver 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