Uses of Class
org.simpleframework.http.socket.FrameType
-
Packages that use FrameType Package Description org.simpleframework.http.socket -
-
Uses of FrameType in org.simpleframework.http.socket
Methods in org.simpleframework.http.socket that return FrameType Modifier and Type Method Description FrameTypeDataFrame. getType()This is used to determine the type of frame.FrameTypeFrame. getType()This is used to determine the type of frame.static FrameTypeFrameType. resolveType(int octet)This is used to acquire the frame type given an opcode.static FrameTypeFrameType. valueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static FrameType[]FrameType. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.simpleframework.http.socket with parameters of type FrameType Modifier and Type Method Description FrameDataFrame. getFrame(FrameType type)This method is used to convert from one frame type to another.FrameFrame. getFrame(FrameType type)This method is used to convert from one frame type to another.Constructors in org.simpleframework.http.socket with parameters of type FrameType Constructor Description DataFrame(FrameType type)Constructor for theDataFrameobject.DataFrame(FrameType type, byte[] data)Constructor for theDataFrameobject.DataFrame(FrameType type, byte[] data, boolean last)Constructor for theDataFrameobject.DataFrame(FrameType type, java.lang.String text)Constructor for theDataFrameobject.DataFrame(FrameType type, java.lang.String text, boolean last)Constructor for theDataFrameobject.DataFrame(FrameType type, Data data)Constructor for theDataFrameobject.DataFrame(FrameType type, Data data, boolean last)Constructor for theDataFrameobject.
-