Package | Description |
---|---|
org.epics.pvdata.factory |
This package implements the interfaces defined in org.epics.pvdata.pv.
|
org.epics.pvdata.misc |
This package provides a number of utility classes that are used by pvData code.
|
org.epics.pvdata.monitor |
This package has the interface and class definitions for code to monitor
changes to fields in a pvData structure.
|
org.epics.pvdata.pv |
This package contains the interface definitions for the Java implementation of pvData.
|
Modifier and Type | Method and Description |
---|---|
void |
BasePVStructure.deserialize(ByteBuffer buffer,
DeserializableControl control,
BitSet bitSet) |
void |
BasePVStructure.serialize(ByteBuffer buffer,
SerializableControl flusher,
BitSet bitSet) |
Modifier and Type | Method and Description |
---|---|
BitSet |
BitSet.get(int fromIndex,
int toIndex)
Returns a new
BitSet composed of bits from this BitSet
from fromIndex (inclusive) to toIndex (exclusive). |
static BitSet |
BitSet.valueOf(byte[] bytes)
Returns a new bit set containing all the bits in the given byte array.
|
static BitSet |
BitSet.valueOf(ByteBuffer bb)
Returns a new bit set containing all the bits in the given byte
buffer between its position and limit.
|
static BitSet |
BitSet.valueOf(long[] longs)
Returns a new bit set containing all the bits in the given long array.
|
static BitSet |
BitSet.valueOf(LongBuffer lb)
Returns a new bit set containing all the bits in the given long
buffer between its position and limit.
|
Modifier and Type | Method and Description |
---|---|
void |
BitSet.and(BitSet set)
Performs a logical AND of this target bit set with the
argument bit set.
|
void |
BitSet.andNot(BitSet set)
Clears all of the bits in this
BitSet whose corresponding
bit is set in the specified BitSet . |
boolean |
BitSetUtil.compress(BitSet bitSet,
PVStructure pvStructure)
Compress the bits in a BitSet related to a structure.
|
boolean |
BitSet.intersects(BitSet set)
Returns true if the specified
BitSet has any bits set to
true that are also set to true in this BitSet . |
void |
BitSet.or_and(BitSet set1,
BitSet set2)
Perform AND operation on
set1 and set2 ,
and OR on result and this instance. |
void |
BitSet.or(BitSet set)
Performs a logical OR of this bit set with the bit set
argument.
|
void |
BitSet.set(BitSet src)
Fast copy operation.
|
void |
BitSet.xor(BitSet set)
Performs a logical XOR of this bit set with the bit set
argument.
|
Modifier and Type | Method and Description |
---|---|
BitSet |
MonitorElement.getChangedBitSet()
Get the bitSet showing which fields have changed.
|
BitSet |
MonitorElement.getOverrunBitSet()
Get the bitSet showing which fields have been changed more than once.
|
Modifier and Type | Method and Description |
---|---|
void |
BitSetSerializable.deserialize(ByteBuffer buffer,
DeserializableControl control,
BitSet bitSet)
Deserialize buffer.
|
void |
BitSetSerializable.serialize(ByteBuffer buffer,
SerializableControl flusher,
BitSet bitSet)
Serialize field into given buffer.
|
Copyright © 2014. All Rights Reserved.