Example usage for Java java.util.jar Attributes fields, constructors, methods, implement or subclass
The text is from its open source code.
Attributes() Constructs 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. |
boolean | containsKey(Object name) Returns true if this Map contains the specified attribute name (key). |
Set | entrySet() Returns a Collection view of the attribute name-value mappings contained in this Map. |
Object | get(Object name) Returns the value of the specified attribute name, or null if the attribute name was not found. |
String | getValue(String name) Returns the value of the specified attribute name, specified as a string, or null if the attribute was not found. |
String | getValue(Name name) Returns the value of the specified Attributes.Name, or null if the attribute was not found. |
boolean | isEmpty() Returns true if this Map contains no attributes. |
Set | keySet() Returns a Set view of the attribute names (keys) contained in this Map. |
Object | put(Object name, Object value) Associates the specified value with the specified attribute name (key) in this Map. |
String | putValue(String name, String value) Associates the specified value with the specified attribute name, specified as a String. |
Object | remove(Object name) Removes the attribute with the specified name (key) from this Map. |
int | size() Returns the number of attributes in this Map. |