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 ProtocolProtocol. forName(String name)Gets an enum item for given protocol name.static ProtocolProtocol. 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 ProtocolSelectorProtocolSelector. add(Protocol protocol)Add the given protocol.ProtocolSelectorProtocolSelector. add(Protocol... protocols)Add the given protocols.ProtocolSelectorProtocolSelector. deleteFully(Protocol protocol)Permanently delete the given protocol.ProtocolSelectorProtocolSelector. deleteFully(Protocol... protocols)Permanently delete all of the given protocols.booleanProtocol. in(Protocol... values)Determine whether this instance is equal to one of the given instances.booleanProtocol. in(Protocol value1, Protocol value2)Determine whether this instance is equal to one of the given instances.booleanProtocol. in(Protocol value1, Protocol value2, Protocol value3)Determine whether this instance is equal to one of the given instances.static CipherSuitePredicateCipherSuitePredicate. matchProtocol(Protocol protocol)Return a predicate which matches the given protocol.static CipherSuitePredicateCipherSuitePredicate. matchProtocol(Protocol... protocols)Return a predicate which matches any of the given protocols.ProtocolSelectorProtocolSelector. remove(Protocol protocol)Remove the given protocol.ProtocolSelectorProtocolSelector. 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 ProtocolSelectorProtocolSelector. add(EnumSet<Protocol> protocols)Add the given protocols.ProtocolSelectorProtocolSelector. deleteFully(EnumSet<Protocol> protocols)Permanently delete all of the given protocols.static booleanProtocol. isFull(EnumSet<Protocol> protocols)Determine whether the given set is "full" (meaning it contains all possible values).static CipherSuitePredicateCipherSuitePredicate. matchProtocol(EnumSet<Protocol> protocols)Return a predicate which matches any of the given protocols.ProtocolSelectorProtocolSelector. remove(EnumSet<Protocol> protocols)Remove the given protocols.
-