Package org.eolang.maven.objectionary
Interface Objectionaries
-
- All Known Implementing Classes:
Objectionaries.Fake
,ObjsDefault
public interface Objectionaries
Many objectionaries for different hashes.- Since:
- 0.29.6
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
Objectionaries.Fake
Fake objectionaries.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
contains(ObjectName name)
Check if an object exists.org.cactoos.Input
object(ObjectName name)
Get an object by hash and name.
-
-
-
Method Detail
-
object
org.cactoos.Input object(ObjectName name) throws IOException
Get an object by hash and name.- Parameters:
name
- Object name- Returns:
- Object
- Throws:
IOException
- If some I/O problem happens.
-
contains
boolean contains(ObjectName name) throws IOException
Check if an object exists.- Parameters:
name
- Object name- Returns:
- True if an object exists, false otherwise
- Throws:
IOException
- If some I/O problem happens.
-
-