IvyExtraInfoSpecpublic interface IvyExtraInfo
| Modifier and Type | Method | Description | 
|---|---|---|
| java.util.Map<javax.xml.namespace.QName,java.lang.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. | 
| java.lang.String | get(java.lang.String name) | Returns the value of the element with the unique element name. | 
| java.lang.String | get(java.lang.String namespace,
   java.lang.String name) | Returns the value of the element with the name and namespace provided. | 
@Nullable
java.lang.String get(java.lang.String name)
              throws InvalidUserDataException
InvalidUserDataException will be thrown.name - The unique name of the element whose value should be returnedInvalidUserDataException@Nullable
java.lang.String get(java.lang.String namespace,
                     java.lang.String name)
namespace - The namespace of the element whose value should be returnedname - The name of the element whose value should be returnedjava.util.Map<javax.xml.namespace.QName,java.lang.String> asMap()