Class EntryHistoricalAttribute
- All Implemented Interfaces:
Iterable<ByteString>
,Collection<ByteString>
,Attribute
Attribute
implementations that performs lazy conversion of EntryHistorical
(ds-sync-hist) meta-data to its LDAP attribute representation as well as from its compact
org.opends.server.backends.pluggable.ID2Entry representation.
This class optimizes for all conversions except for conversions to and from LDAP Attributes since these are rarely
needed in practice - it is rare for a client application to read the ds-sync-hist
attribute or modify it
directly.
-
Constructor Summary
ConstructorDescriptionEntryHistoricalAttribute
(Supplier<EntryHistorical> delayedEntryHistorical) Creates a new ds-sync-hist attribute whose content will be lazily computed using the provided supplier.EntryHistoricalAttribute
(EntryHistorical entryHistorical) Creates a new ds-sync-hist attribute whose content is based on the provided historical information. -
Method Summary
Modifier and TypeMethodDescriptionboolean
Adds all of the provided attribute values to this attribute if they are not already present (optional operation).boolean
add
(ByteString value) Addsvalue
to this attribute if it is not already present (optional operation).boolean
addAll
(Collection<? extends ByteString> values) Adds all of the attribute values contained invalues
to this attribute if they are not already present (optional operation).<T> boolean
addAll
(Collection<T> values, Collection<? super T> duplicateValues) Adds all of the attribute values contained invalues
to this attribute if they are not already present (optional operation).void
clear()
Removes all of the attribute values from this attribute (optional operation).boolean
Returnstrue
if this attribute containsvalue
.boolean
containsAll
(Collection<?> values) Returnstrue
if this attribute contains all of the attribute values contained invalues
.boolean
Returnstrue
ifobject
is an attribute which is equal to this attribute.Returns the first attribute value in this attribute.void
forEach
(Consumer<? super ByteString> action) void
forEachNormalizedValue
(BiConsumer<? super ByteString, ? super ByteString> action) Performs the provided action for each value and its associated normalized value in this attribute.Returns the attribute description of this attribute, which includes its attribute type and any options.Returns the historical information associated with this attribute, computing it if needed.Returns the historical information associated with this attribute, computing it if needed.int
hashCode()
Returns the hash code for this attribute.boolean
isEmpty()
Returnstrue
if this attribute contains no attribute values.boolean
Indicates whether this is a virtual attribute (dynamically computed) rather than a real attribute (persisted).iterator()
Returns an iterator over the attribute values in this attribute.boolean
matchesAnyNormalizedValue
(Predicate<? super ByteString> predicate) Returnstrue
if any values in this attribute match the provided predicate.boolean
matchesAnyNormalizedValue
(Map<ByteString, ByteString> normalizedValues) Returnstrue
if any values in this attribute match at least one of the values in the provided map.parse()
Returns a parser for this attribute which can be used for decoding values as different types of object.boolean
Removesvalue
from this attribute if it is present (optional operation).boolean
removeAll
(Collection<?> values) Removes all of the attribute values contained invalues
from this attribute if they are present (optional operation).<T> boolean
removeAll
(Collection<T> values, Collection<? super T> missingValues) Removes all of the attribute values contained invalues
from this attribute if they are present (optional operation).boolean
removeIf
(Predicate<? super ByteString> filter) boolean
retainAll
(Collection<?> values) Retains only the attribute values in this attribute which are contained invalues
(optional operation).<T> boolean
retainAll
(Collection<T> values, Collection<? super T> missingValues) Retains only the attribute values in this attribute which are contained invalues
(optional operation).int
size()
Returns the number of attribute values in this attribute.stream()
toArray()
Returns an array containing all of the attribute values contained in this attribute.<T> T[]
toArray
(T[] array) Returns an array containing all of the attribute values in this attribute; the runtime type of the returned array is that of the specified array.toString()
Returns a string representation of this attribute.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface org.forgerock.opendj.ldap.Attribute
firstValueAsString, getAttributeDescriptionAsString, isReal, put, put
Methods inherited from interface java.util.Collection
toArray
-
Constructor Details
-
EntryHistoricalAttribute
Creates a new ds-sync-hist attribute whose content will be lazily computed using the provided supplier.- Parameters:
delayedEntryHistorical
- The supplier to be invoked in order to compute the attribute's content.
-
EntryHistoricalAttribute
Creates a new ds-sync-hist attribute whose content is based on the provided historical information.- Parameters:
entryHistorical
- The historical information from which the attribute values will be computed.
-
-
Method Details
-
getEntryHistoricalForRead
Returns the historical information associated with this attribute, computing it if needed. This method should only be used when the caller does not intend to update the returned historical information.- Parameters:
dn
- The name of the entry containing this attribute.- Returns:
- The historical information associated with this attribute, computing it if needed.
-
getEntryHistoricalForUpdate
Returns the historical information associated with this attribute, computing it if needed. This method should be used when the caller intends to update the returned historical information.- Parameters:
dn
- The name of the entry containing this attribute.- Returns:
- The historical information associated with this attribute, computing it if needed.
-
getAttributeDescription
Description copied from interface:Attribute
Returns the attribute description of this attribute, which includes its attribute type and any options.- Specified by:
getAttributeDescription
in interfaceAttribute
- Returns:
- The attribute description.
-
isVirtual
public boolean isVirtual()Description copied from interface:Attribute
Indicates whether this is a virtual attribute (dynamically computed) rather than a real attribute (persisted). -
isEmpty
public boolean isEmpty()Description copied from interface:Attribute
Returnstrue
if this attribute contains no attribute values.- Specified by:
isEmpty
in interfaceAttribute
- Specified by:
isEmpty
in interfaceCollection<ByteString>
- Returns:
true
if this attribute contains no attribute values.
-
add
Description copied from interface:Attribute
Addsvalue
to this attribute if it is not already present (optional operation). If this attribute already containsvalue
, the call leaves the attribute unchanged and returnsfalse
.- Specified by:
add
in interfaceAttribute
- Specified by:
add
in interfaceCollection<ByteString>
- Parameters:
value
- The attribute value to be added to this attribute.- Returns:
true
if this attribute changed as a result of this call.
-
add
Description copied from interface:Attribute
Adds all of the provided attribute values to this attribute if they are not already present (optional operation).Any attribute values which are not instances of
ByteString
will be converted using theByteString.valueOfObject(Object)
method. -
addAll
Description copied from interface:Attribute
Adds all of the attribute values contained invalues
to this attribute if they are not already present (optional operation).An invocation of this method is equivalent to:
attribute.addAll(values, null);
- Specified by:
addAll
in interfaceAttribute
- Specified by:
addAll
in interfaceCollection<ByteString>
- Parameters:
values
- The attribute values to be added to this attribute.- Returns:
true
if this attribute changed as a result of this call.
-
addAll
Description copied from interface:Attribute
Adds all of the attribute values contained invalues
to this attribute if they are not already present (optional operation). Any attribute values which are already present will be added toduplicateValues
if specified.Any attribute values which are not instances of
ByteString
will be converted using theByteString.valueOfObject(Object)
method.- Specified by:
addAll
in interfaceAttribute
- Type Parameters:
T
- The type of the attribute value objects being added.- Parameters:
values
- The attribute values to be added to this attribute.duplicateValues
- A collection into which duplicate values will be added, ornull
if duplicate values should not be saved.- Returns:
true
if this attribute changed as a result of this call.
-
clear
public void clear()Description copied from interface:Attribute
Removes all of the attribute values from this attribute (optional operation). This attribute will be empty after this call returns.- Specified by:
clear
in interfaceAttribute
- Specified by:
clear
in interfaceCollection<ByteString>
-
contains
Description copied from interface:Attribute
Returnstrue
if this attribute containsvalue
.If
value
is not an instance ofByteString
then it will be converted using theByteString.valueOfObject(Object)
method.- Specified by:
contains
in interfaceAttribute
- Specified by:
contains
in interfaceCollection<ByteString>
- Parameters:
value
- The attribute value whose presence in this attribute is to be tested.- Returns:
true
if this attribute containsvalue
, orfalse
if not.
-
containsAll
Description copied from interface:Attribute
Returnstrue
if this attribute contains all of the attribute values contained invalues
.Any attribute values which are not instances of
ByteString
will be converted using theByteString.valueOfObject(Object)
method.- Specified by:
containsAll
in interfaceAttribute
- Specified by:
containsAll
in interfaceCollection<ByteString>
- Parameters:
values
- The attribute values whose presence in this attribute is to be tested.- Returns:
true
if this attribute contains all of the attribute values contained invalues
, orfalse
if not.
-
equals
Description copied from interface:Attribute
Returnstrue
ifobject
is an attribute which is equal to this attribute. Two attributes are considered equal if their attribute descriptions are equal, they both have the same number of attribute values, and every attribute value contained in the first attribute is also contained in the second attribute.- Specified by:
equals
in interfaceAttribute
- Specified by:
equals
in interfaceCollection<ByteString>
- Overrides:
equals
in classObject
- Parameters:
object
- The object to be tested for equality with this attribute.- Returns:
true
ifobject
is an attribute which is equal to this attribute, orfalse
if not.
-
firstValue
Description copied from interface:Attribute
Returns the first attribute value in this attribute.- Specified by:
firstValue
in interfaceAttribute
- Returns:
- The first attribute value in this attribute.
-
forEachNormalizedValue
Description copied from interface:Attribute
Performs the provided action for each value and its associated normalized value in this attribute.- Specified by:
forEachNormalizedValue
in interfaceAttribute
- Parameters:
action
- The action to perform which will be passed the normalized value as the first parameter and the user provided value as the second parameter.
-
hashCode
public int hashCode()Description copied from interface:Attribute
Returns the hash code for this attribute. It will be calculated as the sum of the hash codes of the attribute description and all of the attribute values.- Specified by:
hashCode
in interfaceAttribute
- Specified by:
hashCode
in interfaceCollection<ByteString>
- Overrides:
hashCode
in classObject
- Returns:
- The hash code for this attribute.
-
iterator
Description copied from interface:Attribute
Returns an iterator over the attribute values in this attribute. The attribute values are returned in no particular order, unless the implementation of this attribute provides such a guarantee.- Specified by:
iterator
in interfaceAttribute
- Specified by:
iterator
in interfaceCollection<ByteString>
- Specified by:
iterator
in interfaceIterable<ByteString>
- Returns:
- An iterator over the attribute values in this attribute.
-
matchesAnyNormalizedValue
Description copied from interface:Attribute
Returnstrue
if any values in this attribute match at least one of the values in the provided map. Returnsfalse
if this attribute is empty or if the provided map is empty. The map elements are mappings from normalized values to their corresponding values, where the normalized values must have been normalized according to this attribute's equality matching rule.NOTE: this method returns
true
if the intersection of the normalized values in this attribute and the normalized values of the provided map is not empty.- Specified by:
matchesAnyNormalizedValue
in interfaceAttribute
- Parameters:
normalizedValues
- The map whose elements are mappings from normalized values to their corresponding values.- Returns:
true
if any values in this attribute are contained in the provided map.
-
matchesAnyNormalizedValue
Description copied from interface:Attribute
Returnstrue
if any values in this attribute match the provided predicate. Returnsfalse
if this attribute is empty.- Specified by:
matchesAnyNormalizedValue
in interfaceAttribute
- Parameters:
predicate
- The predicate which will be passed the normalized value as the first parameter and the user provided value as the second parameter.- Returns:
true
if any values in this attribute match the provided predicate.
-
parse
Description copied from interface:Attribute
Returns a parser for this attribute which can be used for decoding values as different types of object. -
remove
Description copied from interface:Attribute
Removesvalue
from this attribute if it is present (optional operation). If this attribute does not containvalue
, the call leaves the attribute unchanged and returnsfalse
.If
value
is not an instance ofByteString
then it will be converted using theByteString.valueOfObject(Object)
method.- Specified by:
remove
in interfaceAttribute
- Specified by:
remove
in interfaceCollection<ByteString>
- Parameters:
value
- The attribute value to be removed from this attribute.- Returns:
true
if this attribute changed as a result of this call.
-
removeAll
Description copied from interface:Attribute
Removes all of the attribute values contained invalues
from this attribute if they are present (optional operation).Any attribute values which are not instances of
ByteString
will be converted using theByteString.valueOfObject(Object)
method.An invocation of this method is equivalent to:
attribute.removeAll(values, null);
- Specified by:
removeAll
in interfaceAttribute
- Specified by:
removeAll
in interfaceCollection<ByteString>
- Parameters:
values
- The attribute values to be removed from this attribute.- Returns:
true
if this attribute changed as a result of this call.
-
removeAll
Description copied from interface:Attribute
Removes all of the attribute values contained invalues
from this attribute if they are present (optional operation). Any attribute values which are not already present will be added tomissingValues
if specified.Any attribute values which are not instances of
ByteString
will be converted using theByteString.valueOfObject(Object)
method.- Specified by:
removeAll
in interfaceAttribute
- Type Parameters:
T
- The type of the attribute value objects being removed.- Parameters:
values
- The attribute values to be removed from this attribute.missingValues
- A collection into which missing values will be added, ornull
if missing values should not be saved.- Returns:
true
if this attribute changed as a result of this call.
-
retainAll
Description copied from interface:Attribute
Retains only the attribute values in this attribute which are contained invalues
(optional operation).Any attribute values which are not instances of
ByteString
will be converted using theByteString.valueOfObject(Object)
method.An invocation of this method is equivalent to:
attribute.retainAll(values, null);
- Specified by:
retainAll
in interfaceAttribute
- Specified by:
retainAll
in interfaceCollection<ByteString>
- Parameters:
values
- The attribute values to be retained in this attribute.- Returns:
true
if this attribute changed as a result of this call.
-
retainAll
Description copied from interface:Attribute
Retains only the attribute values in this attribute which are contained invalues
(optional operation). Any attribute values which are not already present will be added tomissingValues
if specified.Any attribute values which are not instances of
ByteString
will be converted using theByteString.valueOfObject(Object)
method.- Specified by:
retainAll
in interfaceAttribute
- Type Parameters:
T
- The type of the attribute value objects being retained.- Parameters:
values
- The attribute values to be retained in this attribute.missingValues
- A collection into which missing values will be added, ornull
if missing values should not be saved.- Returns:
true
if this attribute changed as a result of this call.
-
size
public int size()Description copied from interface:Attribute
Returns the number of attribute values in this attribute.- Specified by:
size
in interfaceAttribute
- Specified by:
size
in interfaceCollection<ByteString>
- Returns:
- The number of attribute values in this attribute.
-
toArray
Description copied from interface:Attribute
Returns an array containing all of the attribute values contained in this attribute.If this attribute makes any guarantees as to what order its attribute values are returned by its iterator, this method must return the attribute values in the same order.
The returned array will be "safe" in that no references to it are maintained by this attribute. The caller is thus free to modify the returned array.
- Specified by:
toArray
in interfaceAttribute
- Specified by:
toArray
in interfaceCollection<ByteString>
- Returns:
- An array containing all of the attribute values contained in this attribute.
-
toArray
public <T> T[] toArray(T[] array) Description copied from interface:Attribute
Returns an array containing all of the attribute values in this attribute; the runtime type of the returned array is that of the specified array.If the set fits in the specified array, it is returned therein. Otherwise, a new array is allocated with the runtime type of the specified array and the size of this attribute. If this attribute fits in the specified array with room to spare (i.e., the array has more elements than this attribute), the elements in the array immediately following the end of the set is set to
null
.If this attribute makes any guarantees as to what order its attribute values are returned by its iterator, this method must return the attribute values in the same order.
- Specified by:
toArray
in interfaceAttribute
- Specified by:
toArray
in interfaceCollection<ByteString>
- Type Parameters:
T
- The type of elements contained inarray
.- Parameters:
array
- An array into which the elements of this attribute should be put.- Returns:
- An array containing all of the attribute values contained in this attribute.
-
toString
Description copied from interface:Attribute
Returns a string representation of this attribute. -
removeIf
- Specified by:
removeIf
in interfaceCollection<ByteString>
-
spliterator
- Specified by:
spliterator
in interfaceCollection<ByteString>
- Specified by:
spliterator
in interfaceIterable<ByteString>
-
stream
- Specified by:
stream
in interfaceCollection<ByteString>
-
parallelStream
- Specified by:
parallelStream
in interfaceCollection<ByteString>
-
forEach
- Specified by:
forEach
in interfaceIterable<ByteString>
-