- java.lang.Object
-
- io.netty5.handler.codec.rtsp.RtspVersions
-
public final class RtspVersions extends Object
The version of RTSP.
-
-
Field Summary
Fields Modifier and Type Field Description static HttpVersionRTSP_1_0RTSP/1.0
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static HttpVersionvalueOf(String text)Returns an existing or newHttpVersioninstance which matches to the specified RTSP version string.
-
-
-
Field Detail
-
RTSP_1_0
public static final HttpVersion RTSP_1_0
RTSP/1.0
-
-
Method Detail
-
valueOf
public static HttpVersion valueOf(String text)
Returns an existing or newHttpVersioninstance which matches to the specified RTSP version string. If the specifiedtextis equal to"RTSP/1.0",RTSP_1_0will be returned. Otherwise, a newHttpVersioninstance will be returned.
-
-