Package NeoVisionaries.WebSockets
Enum DualStackMode
- java.lang.Object
-
- java.lang.Enum<DualStackMode>
-
- NeoVisionaries.WebSockets.DualStackMode
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<DualStackMode>
public enum DualStackMode extends java.lang.Enum<DualStackMode>
The dual stack mode defines which IP address families will be used to establish a connection.
Read included Apache License 2.0:HERE
AllNeoVisionaries.WebSockets.*
Code Obtained From:GitHub 'NV' (Takahiko Kawasaki)
Public Archive.
Hi-Lited Source-Code:- View Here: NeoVisionaries/WebSockets/DualStackMode.java
- Open New Browser-Tab: NeoVisionaries/WebSockets/DualStackMode.java
File Size: 536 Bytes Line Count: 29 '\n' Characters Found
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DualStackMode
valueOf(String name)
Returns the enum constant of this type with the specified name.static DualStackMode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BOTH
public static final DualStackMode BOTH
Try both IPv4 and IPv6 to establish a connection. Used by default and should generally be preferred.
-
IPV4_ONLY
public static final DualStackMode IPV4_ONLY
Only use IPv4 to establish a connection.
-
IPV6_ONLY
public static final DualStackMode IPV6_ONLY
Only use IPv6 to establish a connection.
-
-
Method Detail
-
values
public static DualStackMode[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (DualStackMode c : DualStackMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DualStackMode valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-