Class BitSet
java.lang.Object
java.util.BitSet
org.datanucleus.store.types.wrappers.BitSet
- All Implemented Interfaces:
Serializable, Cloneable, SCO<BitSet>
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionBitSet(DNStateManager sm, AbstractMemberMetaData mmd) Creates a BitSet object. -
Method Summary
Modifier and TypeMethodDescriptionvoidvoidvoidattachCopy(BitSet value) Method to attached the passed value.voidclear()voidclear(int bitIndex) voidclear(int fromIndex, int toIndex) clone()Creates and returns a copy of this object.detachCopy(FetchPlanState state) Method to detach a copy.voidflip(int bitIndex) voidflip(int fromIndex, int toIndex) Accessor for the field namegetOwner()Accessor for the owner.getValue()Accessor for the unwrapped value that we are wrapping.voidMethod to initialise the SCO for use, and allowing the SCO to be loaded from the datastore (when we have a backing store).voidinitialise(BitSet set) Method to initialise the SCO for use with the provided initial value.voidinitialise(BitSet newValue, Object oldValue) Method to initialise the SCO for use, where replacing an old value with a new value such as when calling a setter field passing in a new value.voidUtility to mark the object as dirtyvoidvoidset(int bitIndex) voidset(int bitIndex, boolean value) voidset(int fromIndex, int toIndex) voidset(int fromIndex, int toIndex, boolean value) voidUtility to unset the owner.protected ObjectThe writeReplace method is called when ObjectOutputStream is preparing to write the object to the stream.voidMethods inherited from class BitSet
cardinality, equals, get, get, hashCode, intersects, isEmpty, length, nextClearBit, nextSetBit, previousClearBit, previousSetBit, size, stream, toByteArray, toLongArray, toString, valueOf, valueOf, valueOf, valueOf
-
Field Details
-
ownerSM
-
ownerMmd
-
-
Constructor Details
-
BitSet
Creates a BitSet object. Assigns owning object and field name.- Parameters:
sm- StateManager for the owning objectmmd- Metadata for the member
-
-
Method Details
-
initialise
public void initialise()Description copied from interface:SCOMethod to initialise the SCO for use, and allowing the SCO to be loaded from the datastore (when we have a backing store). This can be utilised to perform any eager loading of information from the datastore.- Specified by:
initialisein interfaceSCO<BitSet>
-
initialise
Description copied from interface:SCOMethod to initialise the SCO for use, where replacing an old value with a new value such as when calling a setter field passing in a new value. Note that oldValue is marked as Object since for cases where the member type is Collection the newValue could be, for example, ArrayList, and the oldValue of type Collection (representing null).- Specified by:
initialisein interfaceSCO<BitSet>- Parameters:
newValue- New value (to wrap)oldValue- Old value (to use in deciding what needs deleting etc)
-
initialise
Description copied from interface:SCOMethod to initialise the SCO for use with the provided initial value. This is used, for example, when retrieving the field from the datastore and setting it in the persistable object.- Specified by:
initialisein interfaceSCO<BitSet>- Parameters:
set- the object from which to copy the value.
-
getValue
-
unsetOwner
public void unsetOwner()Utility to unset the owner.- Specified by:
unsetOwnerin interfaceSCO<BitSet>
-
getOwner
-
getFieldName
Accessor for the field name- Specified by:
getFieldNamein interfaceSCO<BitSet>- Returns:
- The field name
-
makeDirty
public void makeDirty()Utility to mark the object as dirty -
detachCopy
Method to detach a copy.- Specified by:
detachCopyin interfaceSCO<BitSet>- Parameters:
state- State for detachment process- Returns:
- A copy of the object
-
attachCopy
Method to attached the passed value.- Specified by:
attachCopyin interfaceSCO<BitSet>- Parameters:
value- The new value
-
clone
Creates and returns a copy of this object.Mutable second-class Objects are required to provide a public clone method in order to allow for copying persistable objects. In contrast to Object.clone(), this method must not throw a CloneNotSupportedException.
-
writeReplace
The writeReplace method is called when ObjectOutputStream is preparing to write the object to the stream. The ObjectOutputStream checks whether the class defines the writeReplace method. If the method is defined, the writeReplace method is called to allow the object to designate its replacement in the stream. The object returned should be either of the same type as the object passed in or an object that when read and resolved will result in an object of a type that is compatible with all references to the object.- Returns:
- the replaced object
- Throws:
ObjectStreamException- if an error occurs
-
and
-
andNot
-
clear
-
or
-
set
-
xor
-
clear
-
clear
-
flip
-
flip
-
set
-
set
-
set
-