Class EventMethods
- java.lang.Object
-
- org.eclipse.jetty.websocket.common.events.annotated.EventMethods
-
public class EventMethods extends java.lang.Object
A representation of the methods available to call for a particular class.
-
-
Field Summary
Fields Modifier and Type Field Description EventMethod
onBinary
EventMethod
onClose
EventMethod
onConnect
EventMethod
onError
EventMethod
onFrame
EventMethod
onText
-
Constructor Summary
Constructors Constructor Description EventMethods(java.lang.Class<?> pojoClass)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object obj)
java.lang.Class<?>
getPojoClass()
int
hashCode()
java.lang.String
toString()
-
-
-
Field Detail
-
onConnect
public EventMethod onConnect
-
onClose
public EventMethod onClose
-
onBinary
public EventMethod onBinary
-
onText
public EventMethod onText
-
onError
public EventMethod onError
-
onFrame
public EventMethod onFrame
-
-
Method Detail
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equals
in classjava.lang.Object
-
getPojoClass
public java.lang.Class<?> getPojoClass()
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-