Uses of Class
com.vladsch.flexmark.util.misc.BitFieldSet
-
Packages that use BitFieldSet Package Description com.vladsch.flexmark.util.format com.vladsch.flexmark.util.html com.vladsch.flexmark.util.misc com.vladsch.flexmark.util.sequence -
-
Uses of BitFieldSet in com.vladsch.flexmark.util.format
Methods in com.vladsch.flexmark.util.format that return BitFieldSet Modifier and Type Method Description @NotNull BitFieldSet<LineAppendable.Options>
MarkdownWriterBase. getOptionSet()
-
Uses of BitFieldSet in com.vladsch.flexmark.util.html
Methods in com.vladsch.flexmark.util.html that return BitFieldSet Modifier and Type Method Description @NotNull BitFieldSet<LineAppendable.Options>
HtmlAppendableBase. getOptionSet()
-
Uses of BitFieldSet in com.vladsch.flexmark.util.misc
Methods in com.vladsch.flexmark.util.misc that return BitFieldSet Modifier and Type Method Description static <E extends java.lang.Enum<E>>
BitFieldSet<E>BitFieldSet. allOf(java.lang.Class<E> elementType)
Creates an enum set containing all of the elements in the specified element type.BitFieldSet<E>
BitFieldSet. clone()
Returns a copy of this set.static <E extends java.lang.Enum<E>>
BitFieldSet<E>BitFieldSet. complementOf(BitFieldSet<E> s)
Creates an enum set with the same element type as the specified enum set, initially containing all the elements of this type that are not contained in the specified set.static <E extends java.lang.Enum<E>>
BitFieldSet<E>BitFieldSet. copyOf(BitFieldSet<E> s)
Creates an enum set with the same element type as the specified enum set, initially containing the same elements (if any).static <E extends java.lang.Enum<E>>
BitFieldSet<E>BitFieldSet. copyOf(java.util.Collection<E> c)
Creates an enum set initialized from the specified collection.static <E extends java.lang.Enum<E>>
BitFieldSet<E>BitFieldSet. noneOf(java.lang.Class<E> elementType)
Creates an empty enum set with the specified element type.static <E extends java.lang.Enum<E>>
BitFieldSet<E>BitFieldSet. of(@NotNull java.lang.Class<E> declaringClass, E[] rest)
Creates an enum set initially containing the specified elements.static <T extends java.lang.Enum<T>>
BitFieldSet<T>BitFieldSet. of(@NotNull java.lang.Class<T> enumClass, long mask)
Create a bit enum set from a bit maskstatic <E extends java.lang.Enum<E>>
BitFieldSet<E>BitFieldSet. of(E e)
Creates an enum set initially containing the specified element.static <E extends java.lang.Enum<E>>
BitFieldSet<E>BitFieldSet. of(E e1, E e2)
Creates an enum set initially containing the specified elements.static <E extends java.lang.Enum<E>>
BitFieldSet<E>BitFieldSet. of(E first, E... rest)
Creates an enum set initially containing the specified elements.static <E extends java.lang.Enum<E>>
BitFieldSet<E>BitFieldSet. of(E e1, E e2, E e3)
Creates an enum set initially containing the specified elements.static <E extends java.lang.Enum<E>>
BitFieldSet<E>BitFieldSet. of(E e1, E e2, E e3, E e4)
Creates an enum set initially containing the specified elements.static <E extends java.lang.Enum<E>>
BitFieldSet<E>BitFieldSet. of(E e1, E e2, E e3, E e4, E e5)
Creates an enum set initially containing the specified elements.static <E extends java.lang.Enum<E>>
BitFieldSet<E>BitFieldSet. range(E from, E to)
Creates an enum set initially containing all of the elements in the range defined by the two specified endpoints.Methods in com.vladsch.flexmark.util.misc with parameters of type BitFieldSet Modifier and Type Method Description static <E extends java.lang.Enum<E>>
BitFieldSet<E>BitFieldSet. complementOf(BitFieldSet<E> s)
Creates an enum set with the same element type as the specified enum set, initially containing all the elements of this type that are not contained in the specified set.static <E extends java.lang.Enum<E>>
BitFieldSet<E>BitFieldSet. copyOf(BitFieldSet<E> s)
Creates an enum set with the same element type as the specified enum set, initially containing the same elements (if any).Constructors in com.vladsch.flexmark.util.misc with parameters of type BitFieldSet Constructor Description SerializationProxy(BitFieldSet<E> set)
-
Uses of BitFieldSet in com.vladsch.flexmark.util.sequence
Fields in com.vladsch.flexmark.util.sequence declared as BitFieldSet Modifier and Type Field Description static BitFieldSet<LineAppendable.Options>
LineAppendable. O_FORMAT_ALL
private BitFieldSet<LineAppendable.Options>
LineAppendableImpl. options
Methods in com.vladsch.flexmark.util.sequence that return BitFieldSet Modifier and Type Method Description @NotNull BitFieldSet<LineAppendable.Options>
LineAppendable. getOptionSet()
Get current options as set which can be used to modify options@NotNull BitFieldSet<LineAppendable.Options>
LineAppendableImpl. getOptionSet()
static BitFieldSet<LineAppendable.Options>
LineAppendable. toOptionSet(int options)
static BitFieldSet<LineAppendable.Options>
LineAppendable. toOptionSet(LineAppendable.Options... options)
Methods in com.vladsch.flexmark.util.sequence with parameters of type BitFieldSet Modifier and Type Method Description static BasedOptionsSequence
BasedOptionsSequence. of(@NotNull java.lang.CharSequence chars, BitFieldSet<BasedOptionsHolder.Options> optionFlags)
static BasedOptionsSequence
BasedOptionsSequence. of(@NotNull java.lang.CharSequence chars, BitFieldSet<BasedOptionsHolder.Options> optionFlags, @Nullable DataHolder options)
default @NotNull LineAppendable
LineAppendable. setOptions(BitFieldSet<LineAppendable.Options> options)
Set options on processing textConstructors in com.vladsch.flexmark.util.sequence with parameters of type BitFieldSet Constructor Description LineAppendableImpl(@Nullable java.lang.Appendable appendable, BitFieldSet<LineAppendable.Options> formatOptions)
-