Flutter Engine
The Flutter Engine
|
Public Member Functions | |
SearchResult (Location location, String kind, boolean isPotential, List< Element > path) | |
boolean | equals (Object obj) |
boolean | isPotential () |
String | getKind () |
Location | getLocation () |
List< Element > | getPath () |
int | hashCode () |
JsonObject | toJson () |
String | toString () |
Static Public Member Functions | |
static SearchResult | fromJson (JsonObject jsonObject) |
static List< SearchResult > | fromJsonArray (JsonArray jsonArray) |
Static Public Attributes | |
static final SearchResult[] | EMPTY_ARRAY = new SearchResult[0] |
static final List< SearchResult > | EMPTY_LIST = Lists.newArrayList() |
A single result from a search request.
@coverage dart.server.generated.types
Definition at line 32 of file SearchResult.java.
|
inline |
Constructor for SearchResult
.
Definition at line 64 of file SearchResult.java.
|
inline |
Definition at line 72 of file SearchResult.java.
|
inlinestatic |
Definition at line 84 of file SearchResult.java.
|
inlinestatic |
Definition at line 92 of file SearchResult.java.
|
inline |
The kind of element that was found or the kind of reference that was found.
Definition at line 116 of file SearchResult.java.
|
inline |
The location of the code that matched the search criteria.
Definition at line 123 of file SearchResult.java.
The elements that contain the result, starting with the most immediately enclosing ancestor and ending with the library.
Definition at line 131 of file SearchResult.java.
|
inline |
|
inline |
True if the result is a potential match but cannot be confirmed to be a match. For example, if all references to a method m defined in some class were requested, and a reference to a method m from an unknown class were found, it would be marked as being a potential match.
Definition at line 109 of file SearchResult.java.
|
inline |
Definition at line 145 of file SearchResult.java.
|
inline |
Definition at line 159 of file SearchResult.java.
|
static |
Definition at line 34 of file SearchResult.java.
|
static |
Definition at line 36 of file SearchResult.java.