Uses of Class
io.netty.util.internal.TypeParameterMatcher
-
Packages that use TypeParameterMatcher Package Description io.netty.channel The core channel API which is asynchronous and event-driven abstraction of various transports such as a NIO Channel.io.netty.handler.codec Extensible decoder and its common implementations which deal with the packet fragmentation and reassembly issue found in a stream-based transport such as TCP/IP.io.netty.resolver Resolves an arbitrary string that represents the name of an endpoint into an address.io.netty.util.internal Internal-use-only utilities which is not allowed to be used outside Netty. -
-
Uses of TypeParameterMatcher in io.netty.channel
Fields in io.netty.channel declared as TypeParameterMatcher Modifier and Type Field Description private TypeParameterMatcher
SimpleChannelInboundHandler. matcher
private TypeParameterMatcher
SimpleUserEventChannelHandler. matcher
-
Uses of TypeParameterMatcher in io.netty.handler.codec
Fields in io.netty.handler.codec declared as TypeParameterMatcher Modifier and Type Field Description private TypeParameterMatcher
MessageToMessageCodec. inboundMsgMatcher
private TypeParameterMatcher
MessageToByteEncoder. matcher
private TypeParameterMatcher
MessageToMessageDecoder. matcher
private TypeParameterMatcher
MessageToMessageEncoder. matcher
private TypeParameterMatcher
ByteToMessageCodec. outboundMsgMatcher
private TypeParameterMatcher
MessageToMessageCodec. outboundMsgMatcher
-
Uses of TypeParameterMatcher in io.netty.resolver
Fields in io.netty.resolver declared as TypeParameterMatcher Modifier and Type Field Description private TypeParameterMatcher
AbstractAddressResolver. matcher
-
Uses of TypeParameterMatcher in io.netty.util.internal
Subclasses of TypeParameterMatcher in io.netty.util.internal Modifier and Type Class Description class
NoOpTypeParameterMatcher
private static class
TypeParameterMatcher.ReflectiveMatcher
Fields in io.netty.util.internal declared as TypeParameterMatcher Modifier and Type Field Description private static TypeParameterMatcher
TypeParameterMatcher. NOOP
Fields in io.netty.util.internal with type parameters of type TypeParameterMatcher Modifier and Type Field Description private java.util.Map<java.lang.Class<?>,java.util.Map<java.lang.String,TypeParameterMatcher>>
InternalThreadLocalMap. typeParameterMatcherFindCache
private java.util.Map<java.lang.Class<?>,TypeParameterMatcher>
InternalThreadLocalMap. typeParameterMatcherGetCache
Methods in io.netty.util.internal that return TypeParameterMatcher Modifier and Type Method Description static TypeParameterMatcher
TypeParameterMatcher. find(java.lang.Object object, java.lang.Class<?> parametrizedSuperclass, java.lang.String typeParamName)
static TypeParameterMatcher
TypeParameterMatcher. get(java.lang.Class<?> parameterType)
Methods in io.netty.util.internal that return types with arguments of type TypeParameterMatcher Modifier and Type Method Description java.util.Map<java.lang.Class<?>,java.util.Map<java.lang.String,TypeParameterMatcher>>
InternalThreadLocalMap. typeParameterMatcherFindCache()
java.util.Map<java.lang.Class<?>,TypeParameterMatcher>
InternalThreadLocalMap. typeParameterMatcherGetCache()
-