public enum WebsocketVersion extends Enum<WebsocketVersion>
Modifier and Type | Method and Description |
---|---|
static WebsocketVersion |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WebsocketVersion[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WebsocketVersion V00
public static final WebsocketVersion V07
public static final WebsocketVersion V08
public static final WebsocketVersion V13
public static WebsocketVersion[] values()
for (WebsocketVersion c : WebsocketVersion.values()) System.out.println(c);
public static WebsocketVersion valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2023 Eclipse. All rights reserved.