T
- 可通过此AttributeKey
访问的Attribute
的类型。
public final class AttributeKey<T> extends AbstractConstant<AttributeKey<T>>
AttributeMap
中的Attribute
的密钥 。
请注意,不可能有多个具有相同名称的密钥。
Modifier and Type | Method and Description |
---|---|
static boolean |
exists(java.lang.String name)
如果给定的name存在 true 则返回name 。
|
static <T> AttributeKey<T> |
newInstance(java.lang.String name)
创建一个新 AttributeKey 对于给定name 或失败,并IllegalArgumentException 如果AttributeKey 对于给定name 存在。
|
static <T> AttributeKey<T> |
valueOf(java.lang.Class<?> firstNameComponent, java.lang.String secondNameComponent) |
static <T> AttributeKey<T> |
valueOf(java.lang.String name)
返回具有指定 name 的AttributeKey 的单例实例。
|
public static <T> AttributeKey<T> valueOf(java.lang.String name)
name
的AttributeKey
的单例实例。
public static boolean exists(java.lang.String name)
true
则返回name
。
public static <T> AttributeKey<T> newInstance(java.lang.String name)
AttributeKey
对于给定name
或失败,并IllegalArgumentException
如果AttributeKey
对于给定name
存在。
public static <T> AttributeKey<T> valueOf(java.lang.Class<?> firstNameComponent, java.lang.String secondNameComponent)
Copyright © 2008–2018 The Netty Project. All rights reserved.