Represents the set of "extra" info elements in the Ivy descriptor. These elements are children of the "ivy" element, but are not defined in the Ivy schema and come from other namespaces.
Type | Name and description |
---|---|
Map<QName, String> |
asMap() Returns a map view of the 'extra' info elements such that each key is a javax.xml.namespace.QName representing the namespace and name of the element and each value is the content of the element. |
String |
get(String name) Returns the value of the element with the unique element name. |
String |
get(String namespace, String name) Returns the value of the element with the name and namespace provided. |
Returns a map view of the 'extra' info elements such that each key is a javax.xml.namespace.QName representing the namespace and name of the element and each value is the content of the element.
Returns the value of the element with the unique element name. If there are multiple elements with the same element name, in different namespaces, a InvalidUserDataException will be thrown.
name
- The unique name of the element whose value should be returnedReturns the value of the element with the name and namespace provided.
namespace
- The namespace of the element whose value should be returnedname
- The name of the element whose value should be returned