Package io.undertow.websockets.util
Class ClassUtils
java.lang.Object
io.undertow.websockets.util.ClassUtils
- Author:
- Norman Maurer
-
Method Summary
Modifier and TypeMethodDescriptionstatic Class<?>getDecoderType(Class<? extends jakarta.websocket.Decoder> clazz) Returns the Object type for which theEncodercan be used.static Class<?>getEncoderType(Class<? extends jakarta.websocket.Encoder> clazz) Returns the Object type for which theEncodercan be used.getHandlerTypes(Class<? extends jakarta.websocket.MessageHandler> clazz) Returns a map of all supported message types by the given handler class.
-
Method Details
-
getHandlerTypes
public static Map<Class<?>,Boolean> getHandlerTypes(Class<? extends jakarta.websocket.MessageHandler> clazz) Returns a map of all supported message types by the given handler class. The key of the map is the supported message type; the value indicates whether it is a partial message handler or not.- Returns:
- a map of all supported message types by the given handler class.
-
getEncoderType
Returns the Object type for which theEncodercan be used. -
getDecoderType
Returns the Object type for which theEncodercan be used.
-