IvyExtraInfoSpec
public interface IvyExtraInfo
Modifier and Type | Method | 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.
|
@Nullable String get(String name) throws InvalidUserDataException
InvalidUserDataException
will be thrown.name
- The unique name of the element whose value should be returnedInvalidUserDataException
@Nullable String get(String namespace, String name)
namespace
- The namespace of the element whose value should be returnedname
- The name of the element whose value should be returnedMap<QName,String> asMap()