Uses of Class
org.wildfly.security.ssl.Protocol
-
Packages that use Protocol Package Description org.wildfly.security.ssl -
-
Uses of Protocol in org.wildfly.security.ssl
Methods in org.wildfly.security.ssl that return Protocol Modifier and Type Method Description static Protocol
Protocol. forName(String name)
Gets an enum item for given protocol name.static Protocol
Protocol. valueOf(String name)
Returns the enum constant of this type with the specified name.static Protocol[]
Protocol. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.wildfly.security.ssl with parameters of type Protocol Modifier and Type Method Description ProtocolSelector
ProtocolSelector. add(Protocol protocol)
Add the given protocol.ProtocolSelector
ProtocolSelector. add(Protocol... protocols)
Add the given protocols.ProtocolSelector
ProtocolSelector. deleteFully(Protocol protocol)
Permanently delete the given protocol.ProtocolSelector
ProtocolSelector. deleteFully(Protocol... protocols)
Permanently delete all of the given protocols.boolean
Protocol. in(Protocol... values)
Determine whether this instance is equal to one of the given instances.boolean
Protocol. in(Protocol value1, Protocol value2)
Determine whether this instance is equal to one of the given instances.boolean
Protocol. in(Protocol value1, Protocol value2, Protocol value3)
Determine whether this instance is equal to one of the given instances.static CipherSuitePredicate
CipherSuitePredicate. matchProtocol(Protocol protocol)
Return a predicate which matches the given protocol.static CipherSuitePredicate
CipherSuitePredicate. matchProtocol(Protocol... protocols)
Return a predicate which matches any of the given protocols.ProtocolSelector
ProtocolSelector. remove(Protocol protocol)
Remove the given protocol.ProtocolSelector
ProtocolSelector. remove(Protocol... protocols)
Remove the given protocols.Method parameters in org.wildfly.security.ssl with type arguments of type Protocol Modifier and Type Method Description ProtocolSelector
ProtocolSelector. add(EnumSet<Protocol> protocols)
Add the given protocols.ProtocolSelector
ProtocolSelector. deleteFully(EnumSet<Protocol> protocols)
Permanently delete all of the given protocols.static boolean
Protocol. isFull(EnumSet<Protocol> protocols)
Determine whether the given set is "full" (meaning it contains all possible values).static CipherSuitePredicate
CipherSuitePredicate. matchProtocol(EnumSet<Protocol> protocols)
Return a predicate which matches any of the given protocols.ProtocolSelector
ProtocolSelector. remove(EnumSet<Protocol> protocols)
Remove the given protocols.
-