Enum SocketAddressCallback.Kind
- java.lang.Object
-
- java.lang.Enum<SocketAddressCallback.Kind>
-
- org.wildfly.security.auth.callback.SocketAddressCallback.Kind
-
- All Implemented Interfaces:
Serializable
,Comparable<SocketAddressCallback.Kind>
- Enclosing class:
- SocketAddressCallback
public static enum SocketAddressCallback.Kind extends Enum<SocketAddressCallback.Kind>
Endpoint disposition kinds.
-
-
Constructor Summary
Constructors Modifier Constructor Description private
Kind()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SocketAddressCallback.Kind
valueOf(String name)
Returns the enum constant of this type with the specified name.static SocketAddressCallback.Kind[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LOCAL
public static final SocketAddressCallback.Kind LOCAL
The local endpoint.
-
PEER
public static final SocketAddressCallback.Kind PEER
The remote (peer) endpoint.
-
-
Method Detail
-
values
public static SocketAddressCallback.Kind[] 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 (SocketAddressCallback.Kind c : SocketAddressCallback.Kind.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SocketAddressCallback.Kind valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-