Package org.apache.hc.core5.http.config
Interface Lookup<I>
-
- Type Parameters:
I- the type of values to lookup.
- All Known Implementing Classes:
Registry
public interface Lookup<I>Generic lookup by lower-case string ID.- Since:
- 4.3
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Ilookup(java.lang.String name)Looks up a value using a lower-case string ID.
-
-
-
Method Detail
-
lookup
I lookup(java.lang.String name)
Looks up a value using a lower-case string ID.- Parameters:
name- The lookup name.- Returns:
- The matching value.
-
-