com.android.manifmerger
Interface KeyResolver<T>
public interface KeyResolver<T>
Facility to identify an element from its key.
Method Summary |
java.lang.Iterable<java.lang.String> |
getKeys()
|
T |
resolve(java.lang.String key)
Returns an element identified with the passed key. |
resolve
@Nullable
T resolve(java.lang.String key)
- Returns an element identified with the passed key.
- Parameters:
key
- key to resolve.
- Returns:
- the element identified by the passed key or null if there is no key of that name.
getKeys
java.lang.Iterable<java.lang.String> getKeys()