Package org.eolang.maven.objectionary
Interface Objectionary
-
- All Known Implementing Classes:
Objectionary.Fake
,OyIndexed
,OyRemote
public interface Objectionary
Objectionary.- Since:
- 1.0
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
Objectionary.Fake
Objectionary with lambda-function Ctor-s for testing.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
contains(String name)
Checks whether an Objectionary contains a provided object.org.cactoos.Input
get(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.
-
-