Enum Recyclers

    • Method Detail

      • values

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

        public static Recyclers valueOf​(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:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null
      • concurrentDeque

        public static <T> Recycler<T> concurrentDeque​(Recycler.C<T> c,
                                                      int limit)
        Return a concurrent recycler based on a deque.
      • deque

        public static <T> Recycler<T> deque​(Recycler.C<T> c,
                                            int limit)
        Return a recycler based on a deque.
      • dequeFactory

        public static <T> Recycler.Factory<T> dequeFactory​(Recycler.C<T> c,
                                                           int limit)
        Return a recycler based on a deque.
      • concurrent

        public static <T> Recycler<T> concurrent​(Recycler.Factory<T> factory,
                                                 int concurrencyLevel)
        Create a concurrent implementation that can support concurrent access from concurrencyLevel threads with little contention.