Class Attributes
java.lang.Object
java.util.jar.Attributes
The Attributes class maps Manifest attribute names to associated string
values. Valid attribute names are case-insensitive, are restricted to
the ASCII characters in the set [0-9a-zA-Z_-], and cannot exceed 70
characters in length. There must be a colon and a SPACE after the name;
the combined length will not exceed 72 characters.
Attribute values can contain any characters and
will be UTF8-encoded when written to the output stream. See the
JAR File Specification
for more information about valid attribute names and values.
This map and its views have a predictable iteration order, namely the
order that keys were inserted into the map, as with LinkedHashMap.
- Since:
- 1.2
- External Specifications
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic classThe Attributes.Name class represents an attribute name stored in this Map. -
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionConstructs a new, empty Attributes object with default size.Attributes(int size) Constructs a new, empty Attributes object with the specified initial size.Attributes(Attributes attr) Constructs a new Attributes object with the same attribute name-value mappings as in the specified Attributes. -
Method Summary
Modifier and TypeMethodDescriptionvoidclear()Removes all attributes from this Map.clone()Returns a copy of the Attributes, implemented as follows:booleancontainsKey(Object name) Returns true if this Map contains the specified attribute name (key).booleancontainsValue(Object value) Returns true if this Map maps one or more attribute names (keys) to the specified value.entrySet()Returns a Collection view of the attribute name-value mappings contained in this Map.booleanCompares the specified object to the underlying map for equality.Returns the value of the specified attribute name, or null if the attribute name was not found.Returns the value of the specified attribute name, specified as a string, or null if the attribute was not found.getValue(Attributes.Name name) Returns the value of the specified Attributes.Name, or null if the attribute was not found.inthashCode()Returns the hash code value for this Map.booleanisEmpty()Returns true if this Map contains no attributes.keySet()Returns a Set view of the attribute names (keys) contained in this Map.Associates the specified value with the specified attribute name (key) in this Map.voidCopies all of the attribute name-value mappings from the specified Attributes to this Map.Associates the specified value with the specified attribute name, specified as a String.Removes the attribute with the specified name (key) from this Map.intsize()Returns the number of attributes in this Map.values()Returns a Collection view of the attribute values contained in this Map.Methods declared in class Object
finalize, getClass, notify, notifyAll, toString, wait, wait, waitModifier and TypeMethodDescriptionprotected voidfinalize()Deprecated, for removal: This API element is subject to removal in a future version.Finalization is deprecated and subject to removal in a future release.final Class<?> getClass()Returns the runtime class of thisObject.final voidnotify()Wakes up a single thread that is waiting on this object's monitor.final voidWakes up all threads that are waiting on this object's monitor.toString()Returns a string representation of the object.final voidwait()Causes the current thread to wait until it is awakened, typically by being notified or interrupted.final voidwait(long timeoutMillis) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.final voidwait(long timeoutMillis, int nanos) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.Methods declared in interface Map
compute, computeIfAbsent, computeIfPresent, forEach, getOrDefault, merge, putIfAbsent, remove, replace, replace, replaceAllModifier and TypeMethodDescriptiondefault ObjectAttempts to compute a mapping for the specified key and its current mapped value, ornullif there is no current mapping (optional operation).default ObjectcomputeIfAbsent(Object key, Function<? super Object, ? extends Object> mappingFunction) If the specified key is not already associated with a value (or is mapped tonull), attempts to compute its value using the given mapping function and enters it into this map unlessnull(optional operation).default ObjectcomputeIfPresent(Object key, BiFunction<? super Object, ? super Object, ? extends Object> remappingFunction) If the value for the specified key is present and non-null, attempts to compute a new mapping given the key and its current mapped value (optional operation).default voidforEach(BiConsumer<? super Object, ? super Object> action) Performs the given action for each entry in this map until all entries have been processed or the action throws an exception.default ObjectgetOrDefault(Object key, Object defaultValue) Returns the value to which the specified key is mapped, ordefaultValueif this map contains no mapping for the key.default Objectmerge(Object key, Object value, BiFunction<? super Object, ? super Object, ? extends Object> remappingFunction) If the specified key is not already associated with a value or is associated with null, associates it with the given non-null value (optional operation).default ObjectputIfAbsent(Object key, Object value) If the specified key is not already associated with a value (or is mapped tonull) associates it with the given value and returnsnull, else returns the current value (optional operation).default booleanRemoves the entry for the specified key only if it is currently mapped to the specified value (optional operation).default ObjectReplaces the entry for the specified key only if it is currently mapped to some value (optional operation).default booleanReplaces the entry for the specified key only if currently mapped to the specified value (optional operation).default voidreplaceAll(BiFunction<? super Object, ? super Object, ? extends Object> function) Replaces each entry's value with the result of invoking the given function on that entry until all entries have been processed or the function throws an exception (optional operation).
-
Field Details
-
map
-
-
Constructor Details
-
Attributes
public Attributes()Constructs a new, empty Attributes object with default size. -
Attributes
public Attributes(int size) Constructs a new, empty Attributes object with the specified initial size.- Parameters:
size- the initial number of attributes
-
Attributes
Constructs a new Attributes object with the same attribute name-value mappings as in the specified Attributes.- Parameters:
attr- the specified Attributes
-
-
Method Details
-
get
-
getValue
Returns the value of the specified attribute name, specified as a string, or null if the attribute was not found. The attribute name is case-insensitive.This method is defined as:
return (String)get(new Attributes.Name((String)name));- Parameters:
name- the attribute name as a string- Returns:
- the String value of the specified attribute name, or null if not found.
- Throws:
IllegalArgumentException- if the attribute name is invalid
-
getValue
Returns the value of the specified Attributes.Name, or null if the attribute was not found.This method is defined as:
return (String)get(name);- Parameters:
name- the Attributes.Name object- Returns:
- the String value of the specified Attribute.Name, or null if not found.
-
put
Associates the specified value with the specified attribute name (key) in this Map. If the Map previously contained a mapping for the attribute name, the old value is replaced.- Specified by:
putin interfaceMap<Object,Object> - Parameters:
name- the attribute namevalue- the attribute value- Returns:
- the previous value of the attribute, or null if none
- Throws:
ClassCastException- if the name is not a Attributes.Name or the value is not a String
-
putValue
Associates the specified value with the specified attribute name, specified as a String. The attributes name is case-insensitive. If the Map previously contained a mapping for the attribute name, the old value is replaced.This method is defined as:
return (String)put(new Attributes.Name(name), value);- Parameters:
name- the attribute name as a stringvalue- the attribute value- Returns:
- the previous value of the attribute, or null if none
- Throws:
IllegalArgumentException- if the attribute name is invalid
-
remove
Removes the attribute with the specified name (key) from this Map. Returns the previous attribute value, or null if none. -
containsValue
Returns true if this Map maps one or more attribute names (keys) to the specified value.- Specified by:
containsValuein interfaceMap<Object,Object> - Parameters:
value- the attribute value- Returns:
- true if this Map maps one or more attribute names to the specified value
-
containsKey
Returns true if this Map contains the specified attribute name (key).- Specified by:
containsKeyin interfaceMap<Object,Object> - Parameters:
name- the attribute name- Returns:
- true if this Map contains the specified attribute name
-
putAll
Copies all of the attribute name-value mappings from the specified Attributes to this Map. Duplicate mappings will be replaced.- Specified by:
putAllin interfaceMap<Object,Object> - Parameters:
attr- the Attributes to be stored in this map- Throws:
ClassCastException- if attr is not an Attributes
-
clear
-
size
-
isEmpty
-
keySet
-
values
-
entrySet
-
equals
Compares the specified object to the underlying map for equality. Returns true if the given object is also a Map and the two maps represent the same mappings. -
hashCode
-
clone
Returns a copy of the Attributes, implemented as follows:public Object clone() { return new Attributes(this); }Since the attribute names and values are themselves immutable, the Attributes returned can be safely modified without affecting the original.
-