Class SearchCodeResult
- java.lang.Object
-
- com.cdancy.bitbucket.rest.domain.search.SearchCodeResult
-
public abstract class SearchCodeResult extends Object
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description static SearchCodeResultcreate(Repository repository, List<List<SearchHitContext>> hitContexts, List<SearchPathMatch> pathMatches, String file, Integer hitCount)abstract Stringfile()abstract List<List<SearchHitContext>>hitContexts()abstract IntegerhitCount()abstract List<SearchPathMatch>pathMatches()abstract Repositoryrepository()
-
-
-
Method Detail
-
repository
@Nullable public abstract Repository repository()
-
hitContexts
public abstract List<List<SearchHitContext>> hitContexts()
-
pathMatches
public abstract List<SearchPathMatch> pathMatches()
-
file
@Nullable public abstract String file()
-
hitCount
@Nullable public abstract Integer hitCount()
-
create
public static SearchCodeResult create(Repository repository, List<List<SearchHitContext>> hitContexts, List<SearchPathMatch> pathMatches, String file, Integer hitCount)
-
-