Enum PoolReusePolicy

java.lang.Object
java.lang.Enum<PoolReusePolicy>
org.apache.hc.core5.pool.PoolReusePolicy
All Implemented Interfaces:
Serializable, Comparable<PoolReusePolicy>

public enum PoolReusePolicy extends Enum<PoolReusePolicy>
Enumeration of pooled connection re-use policies
Since:
5.0
  • Enum Constant Details

    • LIFO

      public static final PoolReusePolicy LIFO
      Re-use as few connections as possible making it possible for connections to become idle and expire.
    • FIFO

      public static final PoolReusePolicy FIFO
      Re-use all connections equally preventing them from becoming idle and expiring.
  • Constructor Details

    • PoolReusePolicy

      private PoolReusePolicy()
  • Method Details

    • values

      public static PoolReusePolicy[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static PoolReusePolicy 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