Enum RuntimeView.Factories

  • All Implemented Interfaces:
    RuntimeView.Factory, java.io.Serializable, java.lang.Comparable<RuntimeView.Factories>
    Enclosing class:
    RuntimeView

    public static enum RuntimeView.Factories
    extends java.lang.Enum<RuntimeView.Factories>
    implements RuntimeView.Factory
    Built-in view schema factories.

     All factory args are required except:
     
     Predicate.Factory pf
     String[] args
     

    For application/behavior specific filters, create your own view factory or predicate factory, and then design an ahead-of-time filter (which is usually done at application startup).

    • Constructor Detail

      • Factories

        private Factories()
    • Method Detail

      • values

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

        public static RuntimeView.Factories 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