Interface Attribute
-
- All Superinterfaces:
Collection<ByteString>,Iterable<ByteString>
- All Known Implementing Classes:
AbstractAttribute,CompactAttribute,EntryHistoricalAttribute,LinkedAttribute
public interface Attribute extends Collection<ByteString>
An attribute, comprising of an attribute description and zero or more attribute values.Any methods which perform comparisons between attribute values use the equality matching rule associated with the attribute description.
Any methods which accept
Objectbased attribute values convert the attribute values to instances ofByteStringusingByteString.valueOfObject(Object).This class is conceptually a mathematical
Set<ByteString>.
However, this is declared to implementCollection<ByteString>because java'sSet.equals(Object)requires that all sets should be equal with any other set. This is impossible for an attribute because it is testing attribute description's equality.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default booleanadd(Object... values)Adds all of the provided attribute values to this attribute if they are not already present (optional operation).default booleanadd(ByteString value)Addsvalueto this attribute if it is not already present (optional operation).default booleanaddAll(Collection<? extends ByteString> values)Adds all of the attribute values contained invaluesto this attribute if they are not already present (optional operation).default <T> booleanaddAll(Collection<T> values, Collection<? super T> duplicateValues)Adds all of the attribute values contained invaluesto this attribute if they are not already present (optional operation).default voidclear()Removes all of the attribute values from this attribute (optional operation).booleancontains(Object value)Returnstrueif this attribute containsvalue.booleancontainsAll(Collection<?> values)Returnstrueif this attribute contains all of the attribute values contained invalues.booleanequals(Object object)Returnstrueifobjectis an attribute which is equal to this attribute.ByteStringfirstValue()Returns the first attribute value in this attribute.default StringfirstValueAsString()Returns the first attribute value in this attribute decoded as a UTF-8 string.voidforEachNormalizedValue(BiConsumer<? super ByteString,? super ByteString> action)Performs the provided action for each value and its associated normalized value in this attribute.AttributeDescriptiongetAttributeDescription()Returns the attribute description of this attribute, which includes its attribute type and any options.default StringgetAttributeDescriptionAsString()Returns the string representation of the attribute description of this attribute, which includes its attribute type and any options.inthashCode()Returns the hash code for this attribute.booleanisEmpty()Returnstrueif this attribute contains no attribute values.default booleanisReal()Indicates whether this is a real attribute (persisted) rather than a virtual attribute (dynamically computed).booleanisVirtual()Indicates whether this is a virtual attribute (dynamically computed) rather than a real attribute (persisted).Iterator<ByteString>iterator()Returns an iterator over the attribute values in this attribute.booleanmatchesAnyNormalizedValue(Predicate<? super ByteString> predicate)Returnstrueif any values in this attribute match the provided predicate.booleanmatchesAnyNormalizedValue(Map<ByteString,ByteString> normalizedValues)Returnstrueif any values in this attribute match at least one of the values in the provided map.AttributeParserparse()Returns a parser for this attribute which can be used for decoding values as different types of object.default Attributeput(Object... values)Adds all of the provided attribute values to this attribute if they are not already present (optional operation).default Attributeput(ByteString value)Addsvalueto this attribute if it is not already present (optional operation).default booleanremove(Object value)Removesvaluefrom this attribute if it is present (optional operation).default booleanremoveAll(Collection<?> values)Removes all of the attribute values contained invaluesfrom this attribute if they are present (optional operation).default <T> booleanremoveAll(Collection<T> values, Collection<? super T> missingValues)Removes all of the attribute values contained invaluesfrom this attribute if they are present (optional operation).default booleanretainAll(Collection<?> values)Retains only the attribute values in this attribute which are contained invalues(optional operation).default <T> booleanretainAll(Collection<T> values, Collection<? super T> missingValues)Retains only the attribute values in this attribute which are contained invalues(optional operation).intsize()Returns the number of attribute values in this attribute.ByteString[]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.StringtoString()Returns a string representation of this attribute.-
Methods inherited from interface java.util.Collection
parallelStream, removeIf, spliterator, stream, toArray
-
-
-
-
Method Detail
-
add
default boolean add(ByteString value)
Addsvalueto 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:
addin interfaceCollection<ByteString>- Parameters:
value- The attribute value to be added to this attribute.- Returns:
trueif this attribute changed as a result of this call.- Throws:
UnsupportedOperationException- If this attribute does not support addition of attribute values.NullPointerException- Ifvaluewasnull.
-
put
default Attribute put(ByteString value)
Addsvalueto this attribute if it is not already present (optional operation).If this attribute already contains
value, the call leaves the attribute unchanged. This method is equivalent toadd(ByteString)except that it is designed for chaining by returning a reference to the updated attribute.- Parameters:
value- The attribute value to be added to this attribute.- Returns:
- This attribute.
- Throws:
UnsupportedOperationException- If this attribute does not support addition of attribute values.NullPointerException- Ifvaluewasnull.
-
add
default boolean add(Object... values)
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
ByteStringwill be converted using theByteString.valueOfObject(Object)method.- Parameters:
values- The attribute values to be added to this attribute.- Returns:
trueif this attribute changed as a result of this call.- Throws:
UnsupportedOperationException- If this attribute does not support addition of attribute values.NullPointerException- Ifvalueswasnull.
-
put
default Attribute put(Object... values)
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
ByteStringwill be converted using theByteString.valueOfObject(Object)method.This method is equivalent to
add(Object...)except that it is designed for chaining by returning a reference to the updated attribute.- Parameters:
values- The attribute values to be added to this attribute.- Returns:
- This attribute.
- Throws:
UnsupportedOperationException- If this attribute does not support addition of attribute values.NullPointerException- Ifvalueswasnull.
-
addAll
default boolean addAll(Collection<? extends ByteString> values)
Adds all of the attribute values contained invaluesto this attribute if they are not already present (optional operation).An invocation of this method is equivalent to:
attribute.addAll(values, null);
- Specified by:
addAllin interfaceCollection<ByteString>- Parameters:
values- The attribute values to be added to this attribute.- Returns:
trueif this attribute changed as a result of this call.- Throws:
UnsupportedOperationException- If this attribute does not support addition of attribute values.NullPointerException- Ifvalueswasnull.
-
addAll
default <T> boolean addAll(Collection<T> values, Collection<? super T> duplicateValues)
Adds all of the attribute values contained invaluesto this attribute if they are not already present (optional operation). Any attribute values which are already present will be added toduplicateValuesif specified.Any attribute values which are not instances of
ByteStringwill be converted using theByteString.valueOfObject(Object)method.- 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, ornullif duplicate values should not be saved.- Returns:
trueif this attribute changed as a result of this call.- Throws:
UnsupportedOperationException- If this attribute does not support addition of attribute values.NullPointerException- Ifvalueswasnull.
-
clear
default void clear()
Removes all of the attribute values from this attribute (optional operation). This attribute will be empty after this call returns.- Specified by:
clearin interfaceCollection<ByteString>- Throws:
UnsupportedOperationException- If this attribute does not support removal of attribute values.
-
contains
boolean contains(Object value)
Returnstrueif this attribute containsvalue.If
valueis not an instance ofByteStringthen it will be converted using theByteString.valueOfObject(Object)method.- Specified by:
containsin interfaceCollection<ByteString>- Parameters:
value- The attribute value whose presence in this attribute is to be tested.- Returns:
trueif this attribute containsvalue, orfalseif not.- Throws:
NullPointerException- Ifvaluewasnull.
-
containsAll
boolean containsAll(Collection<?> values)
Returnstrueif this attribute contains all of the attribute values contained invalues.Any attribute values which are not instances of
ByteStringwill be converted using theByteString.valueOfObject(Object)method.- Specified by:
containsAllin interfaceCollection<ByteString>- Parameters:
values- The attribute values whose presence in this attribute is to be tested.- Returns:
trueif this attribute contains all of the attribute values contained invalues, orfalseif not.- Throws:
NullPointerException- Ifvalueswasnull.
-
equals
boolean equals(Object object)
Returnstrueifobjectis 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:
equalsin interfaceCollection<ByteString>- Overrides:
equalsin classObject- Parameters:
object- The object to be tested for equality with this attribute.- Returns:
trueifobjectis an attribute which is equal to this attribute, orfalseif not.
-
firstValue
ByteString firstValue()
Returns the first attribute value in this attribute.- Returns:
- The first attribute value in this attribute.
- Throws:
NoSuchElementException- If this attribute is empty.
-
firstValueAsString
default String firstValueAsString()
Returns the first attribute value in this attribute decoded as a UTF-8 string.- Returns:
- The first attribute value in this attribute decoded as a UTF-8 string.
- Throws:
NoSuchElementException- If this attribute is empty.
-
forEachNormalizedValue
void forEachNormalizedValue(BiConsumer<? super ByteString,? super ByteString> action)
Performs the provided action for each value and its associated normalized value in this attribute.- 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.
-
getAttributeDescription
AttributeDescription getAttributeDescription()
Returns the attribute description of this attribute, which includes its attribute type and any options.- Returns:
- The attribute description.
-
getAttributeDescriptionAsString
default String getAttributeDescriptionAsString()
Returns the string representation of the attribute description of this attribute, which includes its attribute type and any options.- Returns:
- The string representation of the attribute description.
-
hashCode
int hashCode()
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:
hashCodein interfaceCollection<ByteString>- Overrides:
hashCodein classObject- Returns:
- The hash code for this attribute.
-
isEmpty
boolean isEmpty()
Returnstrueif this attribute contains no attribute values.- Specified by:
isEmptyin interfaceCollection<ByteString>- Returns:
trueif this attribute contains no attribute values.
-
isReal
default boolean isReal()
Indicates whether this is a real attribute (persisted) rather than a virtual attribute (dynamically computed).- Returns:
trueif this is a real attribute.
-
isVirtual
boolean isVirtual()
Indicates whether this is a virtual attribute (dynamically computed) rather than a real attribute (persisted).- Returns:
trueif this is a virtual attribute.
-
iterator
Iterator<ByteString> iterator()
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:
iteratorin interfaceCollection<ByteString>- Specified by:
iteratorin interfaceIterable<ByteString>- Returns:
- An iterator over the attribute values in this attribute.
-
matchesAnyNormalizedValue
boolean matchesAnyNormalizedValue(Map<ByteString,ByteString> normalizedValues)
Returnstrueif any values in this attribute match at least one of the values in the provided map. Returnsfalseif 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
trueif the intersection of the normalized values in this attribute and the normalized values of the provided map is not empty.- Parameters:
normalizedValues- The map whose elements are mappings from normalized values to their corresponding values.- Returns:
trueif any values in this attribute are contained in the provided map.
-
matchesAnyNormalizedValue
boolean matchesAnyNormalizedValue(Predicate<? super ByteString> predicate)
Returnstrueif any values in this attribute match the provided predicate. Returnsfalseif this attribute is empty.- 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:
trueif any values in this attribute match the provided predicate.
-
parse
AttributeParser parse()
Returns a parser for this attribute which can be used for decoding values as different types of object.- Returns:
- A parser for this attribute.
-
remove
default boolean remove(Object value)
Removesvaluefrom this attribute if it is present (optional operation). If this attribute does not containvalue, the call leaves the attribute unchanged and returnsfalse.If
valueis not an instance ofByteStringthen it will be converted using theByteString.valueOfObject(Object)method.- Specified by:
removein interfaceCollection<ByteString>- Parameters:
value- The attribute value to be removed from this attribute.- Returns:
trueif this attribute changed as a result of this call.- Throws:
UnsupportedOperationException- If this attribute does not support removal of attribute values.NullPointerException- Ifvaluewasnull.
-
removeAll
default boolean removeAll(Collection<?> values)
Removes all of the attribute values contained invaluesfrom this attribute if they are present (optional operation).Any attribute values which are not instances of
ByteStringwill be converted using theByteString.valueOfObject(Object)method.An invocation of this method is equivalent to:
attribute.removeAll(values, null);
- Specified by:
removeAllin interfaceCollection<ByteString>- Parameters:
values- The attribute values to be removed from this attribute.- Returns:
trueif this attribute changed as a result of this call.- Throws:
UnsupportedOperationException- If this attribute does not support removal of attribute values.NullPointerException- Ifvalueswasnull.
-
removeAll
default <T> boolean removeAll(Collection<T> values, Collection<? super T> missingValues)
Removes all of the attribute values contained invaluesfrom this attribute if they are present (optional operation). Any attribute values which are not already present will be added tomissingValuesif specified.Any attribute values which are not instances of
ByteStringwill be converted using theByteString.valueOfObject(Object)method.- 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, ornullif missing values should not be saved.- Returns:
trueif this attribute changed as a result of this call.- Throws:
UnsupportedOperationException- If this attribute does not support removal of attribute values.NullPointerException- Ifvalueswasnull.
-
retainAll
default boolean retainAll(Collection<?> values)
Retains only the attribute values in this attribute which are contained invalues(optional operation).Any attribute values which are not instances of
ByteStringwill be converted using theByteString.valueOfObject(Object)method.An invocation of this method is equivalent to:
attribute.retainAll(values, null);
- Specified by:
retainAllin interfaceCollection<ByteString>- Parameters:
values- The attribute values to be retained in this attribute.- Returns:
trueif this attribute changed as a result of this call.- Throws:
UnsupportedOperationException- If this attribute does not support removal of attribute values.NullPointerException- Ifvalueswasnull.
-
retainAll
default <T> boolean retainAll(Collection<T> values, Collection<? super T> missingValues)
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 tomissingValuesif specified.Any attribute values which are not instances of
ByteStringwill be converted using theByteString.valueOfObject(Object)method.- 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, ornullif missing values should not be saved.- Returns:
trueif this attribute changed as a result of this call.- Throws:
UnsupportedOperationException- If this attribute does not support removal of attribute values.NullPointerException- Ifvalueswasnull.
-
size
int size()
Returns the number of attribute values in this attribute.- Specified by:
sizein interfaceCollection<ByteString>- Returns:
- The number of attribute values in this attribute.
-
toArray
ByteString[] toArray()
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:
toArrayin interfaceCollection<ByteString>- Returns:
- An array containing all of the attribute values contained in this attribute.
-
toArray
<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.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:
toArrayin 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.
- Throws:
ArrayStoreException- If the runtime type ofarrayis not a supertype ofByteString.NullPointerException- Ifarraywasnull.
-
-