public enum InboundEndpointProtocol extends Enum<InboundEndpointProtocol>
Enum Constant and Description |
---|
TCP
Enum value TCP.
|
UDP
Enum value UDP.
|
Modifier and Type | Method and Description |
---|---|
static InboundEndpointProtocol |
fromString(String value)
Parses a serialized value to a InboundEndpointProtocol instance.
|
String |
toString() |
static InboundEndpointProtocol |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InboundEndpointProtocol[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InboundEndpointProtocol TCP
public static final InboundEndpointProtocol UDP
public static InboundEndpointProtocol[] values()
for (InboundEndpointProtocol c : InboundEndpointProtocol.values()) System.out.println(c);
public static InboundEndpointProtocol 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 nullpublic static InboundEndpointProtocol fromString(String value)
value
- the serialized value to parse.public String toString()
toString
in class Enum<InboundEndpointProtocol>
Copyright © 2019. All rights reserved.