Uses of Class
java.util.BitSet
-
Packages that use BitSet 软件包 描述 java.util 包含集合框架,一些国际化支持类,一个服务加载器,属性,随机数生成,字符串解析和扫描类,base64编码和解码,一个位数组和几个其他实用程序类。javax.swing.text.html.parser 提供默认的HTML解析器以及支持类。 -
-
Uses of BitSet in java.util
Methods in java.util that return BitSet Modifier and Type 方法 描述 BitSet
BitSet. get(int fromIndex, int toIndex)
返回一个新BitSet
组成位从这个BitSet
从fromIndex
(含)至toIndex
(独家)。static BitSet
BitSet. valueOf(byte[] bytes)
返回包含给定字节数组中所有位的新位集合。static BitSet
BitSet. valueOf(long[] longs)
返回包含给定长数组中所有位的新位集。static BitSet
BitSet. valueOf(ByteBuffer bb)
返回一个包含给定字节缓冲区中所有位在其位置和极限之间的新位集合。static BitSet
BitSet. valueOf(LongBuffer lb)
返回包含给定长缓冲区中其位置和极限之间的所有位的新位集合。Methods in java.util with parameters of type BitSet Modifier and Type 方法 描述 void
BitSet. and(BitSet set)
执行此参数位置位的此目标位设置的逻辑 AND 。void
BitSet. andNot(BitSet set)
清除此BitSet
其相应位在指定的BitSet
设置的所有位。boolean
BitSet. intersects(BitSet set)
如果指定,则返回trueBitSet
具有设置为任何位true
,它们也设置为true
这个BitSet
。void
BitSet. or(BitSet set)
使用位设置参数执行该位的逻辑 或 。void
BitSet. xor(BitSet set)
使用位设置参数执行该位的逻辑 异或 。 -
Uses of BitSet in javax.swing.text.html.parser
Fields in javax.swing.text.html.parser declared as BitSet Modifier and Type Field 描述 BitSet
Element. exclusions
元素中不能出现的元素集BitSet
Element. inclusions
可以在元素内发生的一组元素Methods in javax.swing.text.html.parser with parameters of type BitSet Modifier and Type 方法 描述 Element
DTD. defineElement(String name, int type, boolean omitStart, boolean omitEnd, ContentModel content, BitSet exclusions, BitSet inclusions, AttributeList atts)
返回匹配指定参数的Element
。
-