Package org.eolang.maven.objectionary
Interface Objectionary
-
- All Known Implementing Classes:
OyCaching,OyEmpty,OyFallback,OyFallbackSwap,OyHome,OyIndexed,OyRemote
public interface ObjectionaryObjectionary.- Since:
- 1.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleancontains(String name)Checks whether an Objectionary contains a provided object.org.cactoos.Inputget(String name)Resolve object.
-
-
-
Method Detail
-
get
org.cactoos.Input get(String name) throws IOException
Resolve object.- Parameters:
name- Object name.- Returns:
- Object code.
- Throws:
IOException- If fails to fetch.
-
contains
boolean contains(String name) throws IOException
Checks whether an Objectionary contains a provided object.- Parameters:
name- Object name.- Returns:
- Boolean: "true" if found, "false" if not.
- Throws:
IOException- If fails to fetch.
-
-