public static enum ResourceLeakDetector.Level extends java.lang.Enum<ResourceLeakDetector.Level>
Enum Constant and Description |
---|
ADVANCED
启用先进的采样资源泄漏检测功能,以高开销为代价报告最近访问泄漏对象的位置。
|
DISABLED
禁用资源泄漏检测。
|
PARANOID
启用偏执资源泄漏检测,报告最近访问泄漏对象的位置,代价是尽可能高的开销(仅用于测试目的)。
|
SIMPLE
以简化的开销(默认值)为代价,实现简单的采样资源泄漏检测,报告泄漏与否。
|
Modifier and Type | Method and Description |
---|---|
static ResourceLeakDetector.Level |
valueOf(java.lang.String name)
以指定名称返回此类型的枚举常量。
|
static ResourceLeakDetector.Level[] |
values()
按照声明的顺序返回包含此枚举类型常量的数组。
|
public static final ResourceLeakDetector.Level DISABLED
public static final ResourceLeakDetector.Level SIMPLE
public static final ResourceLeakDetector.Level ADVANCED
public static final ResourceLeakDetector.Level PARANOID
public static ResourceLeakDetector.Level[] values()
for (ResourceLeakDetector.Level c : ResourceLeakDetector.Level.values())
System.out.println(c);
public static ResourceLeakDetector.Level valueOf(java.lang.String name)
name
- 要返回的枚举常量的名称。
java.lang.IllegalArgumentException
- 如果此枚举类型没有指定名称的常量
java.lang.NullPointerException
- 如果参数为null
Copyright © 2008–2018 The Netty Project. All rights reserved.