列挙型クラス NettyProperties.LeakDetection

java.lang.ObjectSE
java.lang.EnumSE<NettyProperties.LeakDetection>
org.springframework.boot.autoconfigure.netty.NettyProperties.LeakDetection
実装されたすべてのインターフェース:
SerializableSEComparableSE<NettyProperties.LeakDetection>ConstableSE
含まれているクラス:
NettyProperties

public static enum NettyProperties.LeakDetection extends EnumSE<NettyProperties.LeakDetection>
  • 列挙型定数の詳細

    • DISABLED

      public static final NettyProperties.LeakDetection DISABLED
      リーク検出を完全に無効にします。
    • SIMPLE

      public static final NettyProperties.LeakDetection SIMPLE
      バッファの 1% のリークを検出します。
    • ADVANCED

      public static final NettyProperties.LeakDetection ADVANCED
      バッファの 1% のリークを検出し、それらがアクセスされた場所を追跡します。
    • PARANOID

      public static final NettyProperties.LeakDetection PARANOID
      バッファの 100% のリークを検出し、それらがアクセスされた場所を追跡します。
  • メソッドの詳細

    • values

      public static NettyProperties.LeakDetection[] values()
      この列挙型クラスの定数を含む配列を、宣言されている順序で返します。
      戻り値:
      この列挙型クラスの定数を宣言された順序で含む配列
    • valueOf

      public static NettyProperties.LeakDetection valueOf(StringSE name)
      指定された名前でこのクラスの列挙型定数を返します。文字列は、このクラスで列挙型定数を宣言するために使用される識別子と正確に一致する必要があります。(余分な空白文字は許可されません。)
      パラメーター:
      name - 返される列挙定数の名前。
      戻り値:
      指定された名前の列挙定数
      例外:
      IllegalArgumentExceptionSE - この列挙型クラスに指定された名前の定数がない場合
      NullPointerExceptionSE - 引数が null の場合