Package org.apache.sling.commons.osgi
Interface ManifestHeader.Entry
-
- Enclosing class:
- ManifestHeader
public static interface ManifestHeader.Entry
A header can have several entries separated by comma.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ManifestHeader.NameValuePair[]
getAttributes()
java.lang.String
getAttributeValue(java.lang.String name)
ManifestHeader.NameValuePair[]
getDirectives()
java.lang.String
getDirectiveValue(java.lang.String name)
java.lang.String
getValue()
-
-
-
Method Detail
-
getValue
java.lang.String getValue()
- Returns:
- The value of the entry.
-
getAttributes
ManifestHeader.NameValuePair[] getAttributes()
- Returns:
- The attributes specified for this entry.
-
getDirectives
ManifestHeader.NameValuePair[] getDirectives()
- Returns:
- The directives for this entry.
-
getAttributeValue
java.lang.String getAttributeValue(java.lang.String name)
-
getDirectiveValue
java.lang.String getDirectiveValue(java.lang.String name)
-
-