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