All Packages  Class Hierarchy  This Package  Previous  Next  Index  

Class java.util.jar.Attributes.Name

java.lang.Object
    |
    +----java.util.jar.Attributes.Name

public static class Attributes.Name
extends Object
The Attributes.Name class represents an attribute name stored in this Map. Attribute names are case-insensitive and restricted to the ASCII characters in the set [0-9a-zA-Z_-].


Variable Index

 o ARCHIVE_SEALED
Some predefined attribute names.
 o CLASS_PATH
Some predefined attribute names.
 o CONTENT_TYPE
Some predefined attribute names.
 o IMPLEMENTATION_TITLE
Some predefined attribute names.
 o IMPLEMENTATION_VENDOR
Some predefined attribute names.
 o IMPLEMENTATION_VERSION
Some predefined attribute names.
 o MAIN_CLASS
Some predefined attribute names.
 o MANIFEST_VERSION
Some predefined attribute names.
 o PACKAGE_SEALED
Some predefined attribute names.
 o SIGNATURE_VERSION
Some predefined attribute names.
 o SPECIFICATION_TITLE
Some predefined attribute names.
 o SPECIFICATION_VENDOR
Some predefined attribute names.
 o SPECIFICATION_VERSION
Some predefined attribute names.

Constructor Index

 o Attributes.Name(String)
Constructs a new attribute name using the given string name.

Method Index

 o equals(Object)
Compares this attribute name to another for equality.
 o toString()
Returns the attribute name as a String.

Variables

 o MANIFEST_VERSION
public static final Attributes.Name MANIFEST_VERSION
Some predefined attribute names.

 o SIGNATURE_VERSION
public static final Attributes.Name SIGNATURE_VERSION
Some predefined attribute names.

 o ARCHIVE_SEALED
public static final Attributes.Name ARCHIVE_SEALED
Some predefined attribute names.

 o PACKAGE_SEALED
public static final Attributes.Name PACKAGE_SEALED
Some predefined attribute names.

 o CONTENT_TYPE
public static final Attributes.Name CONTENT_TYPE
Some predefined attribute names.

 o CLASS_PATH
public static final Attributes.Name CLASS_PATH
Some predefined attribute names.

 o MAIN_CLASS
public static final Attributes.Name MAIN_CLASS
Some predefined attribute names.

 o IMPLEMENTATION_TITLE
public static final Attributes.Name IMPLEMENTATION_TITLE
Some predefined attribute names.

 o IMPLEMENTATION_VERSION
public static final Attributes.Name IMPLEMENTATION_VERSION
Some predefined attribute names.

 o IMPLEMENTATION_VENDOR
public static final Attributes.Name IMPLEMENTATION_VENDOR
Some predefined attribute names.

 o SPECIFICATION_TITLE
public static final Attributes.Name SPECIFICATION_TITLE
Some predefined attribute names.

 o SPECIFICATION_VERSION
public static final Attributes.Name SPECIFICATION_VERSION
Some predefined attribute names.

 o SPECIFICATION_VENDOR
public static final Attributes.Name SPECIFICATION_VENDOR
Some predefined attribute names.

Constructors

 o Attributes.Name
public Attributes.Name(String name)
Constructs a new attribute name using the given string name.

Parameters:
name - the attribute string name
Throws: IllegalArgumentException
if the attribute name was invalid
Throws: NullPointerException
if the attribute name was null

Methods

 o equals
public boolean equals(Object o)
Compares this attribute name to another for equality.

Parameters:
o - the object to compare
Overrides:
equals in class Object
 o toString
public String toString()
Returns the attribute name as a String.

Overrides:
toString in class Object

All Packages  Class Hierarchy  This Package  Previous  Next  Index  

Submit a bug or feature