Uses of Class
org.xnio.Sequence
-
Packages that use Sequence Package Description org.xnio The main API package for XNIO. -
-
Uses of Sequence in org.xnio
Fields in org.xnio with type parameters of type Sequence Modifier and Type Field Description static Option<Sequence<java.lang.String>>Options. SASL_DISALLOWED_MECHANISMSA list of disallowed SASL mechanisms.static Option<Sequence<java.lang.String>>Options. SASL_MECHANISMSA list of SASL mechanisms, in decreasing order of preference.static Option<Sequence<Property>>Options. SASL_PROPERTIESA list of provider specific SASL properties.static Option<Sequence<SaslQop>>Options. SASL_QOPSpecify the SASL quality-of-protection to use.static Option<Sequence<java.lang.String>>Options. SSL_ENABLED_CIPHER_SUITESSpecify the cipher suites for an SSL/TLS session.static Option<Sequence<java.lang.String>>Options. SSL_ENABLED_PROTOCOLSSpecify the enabled protocols for an SSL/TLS session.static Option<Sequence<java.lang.Class<? extends javax.net.ssl.KeyManager>>>Options. SSL_JSSE_KEY_MANAGER_CLASSESThe possible key manager classes to use for a JSSE SSL context.static Option<Sequence<java.lang.Class<? extends javax.net.ssl.TrustManager>>>Options. SSL_JSSE_TRUST_MANAGER_CLASSESThe possible trust store classes to use for a JSSE SSL context.static Option<Sequence<java.lang.String>>Options. SSL_SUPPORTED_CIPHER_SUITESGet the supported cipher suites for an SSL/TLS session.static Option<Sequence<java.lang.String>>Options. SSL_SUPPORTED_PROTOCOLSGet the supported protocols for an SSL/TLS session.Methods in org.xnio that return Sequence Modifier and Type Method Description <N> Sequence<N>Sequence. cast(java.lang.Class<N> newType)Cast a sequence to a different type if all the contained elements are of the subtype.static <T> Sequence<T>Sequence. empty()Return an empty sequence.static <T> Sequence<T>Sequence. of(java.util.Collection<T> members)Return a sequence of the given members.static <T> Sequence<T>Sequence. of(T... members)Return a sequence of the given members.Methods in org.xnio that return types with arguments of type Sequence Modifier and Type Method Description static <T> Option<Sequence<T>>Option. sequence(java.lang.Class<?> declClass, java.lang.String name, java.lang.Class<T> elementType)Create an option with a sequence type.static <T> Option<Sequence<java.lang.Class<? extends T>>>Option. typeSequence(java.lang.Class<?> declClass, java.lang.String name, java.lang.Class<T> elementDeclType)Create an option with a sequence-of-types type.Methods in org.xnio with parameters of type Sequence Modifier and Type Method Description booleanSequence. equals(Sequence<?> other)Determine whether this sequence is equal to another.Method parameters in org.xnio with type arguments of type Sequence Modifier and Type Method Description OptionMap.BuilderOptionMap.Builder. setSequence(Option<Sequence<java.lang.Boolean>> key, boolean... values)Set boolean values for an Boolean sequence key.OptionMap.BuilderOptionMap.Builder. setSequence(Option<Sequence<java.lang.Integer>> key, int... values)Set int values for an Integer sequence key.OptionMap.BuilderOptionMap.Builder. setSequence(Option<Sequence<java.lang.Long>> key, long... values)Set long values for a Long sequence key.<T> OptionMap.BuilderOptionMap.Builder. setSequence(Option<Sequence<T>> key, T... values)Set a key-value pair, where the value is a sequence type.
-