Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
SearchResultKind.java
Go to the documentation of this file.
1/*
2 * Copyright (c) 2019, the Dart project authors. Please see the AUTHORS file
3 * for details. All rights reserved. Use of this source code is governed by a
4 * BSD-style license that can be found in the LICENSE file.
5 *
6 * This file has been automatically generated. Please do not edit it manually.
7 * To regenerate the file, use the script "pkg/analysis_server/tool/spec/generate_files".
8 */
9package org.dartlang.analysis.server.protocol;
10
11/**
12 * An enumeration of the kinds of search results returned by the search domain.
13 *
14 * @coverage dart.server.generated.types
15 */
16public class SearchResultKind {
17
18 /**
19 * The declaration of an element.
20 */
21 public static final String DECLARATION = "DECLARATION";
22
23 /**
24 * The invocation of a function or method.
25 */
26 public static final String INVOCATION = "INVOCATION";
27
28 /**
29 * A reference to a field, parameter or variable where it is being read.
30 */
31 public static final String READ = "READ";
32
33 /**
34 * A reference to a field, parameter or variable where it is being read and written.
35 */
36 public static final String READ_WRITE = "READ_WRITE";
37
38 /**
39 * A reference to an element.
40 */
41 public static final String REFERENCE = "REFERENCE";
42
43 /**
44 * Some other kind of search result.
45 */
46 public static final String UNKNOWN = "UNKNOWN";
47
48 /**
49 * A reference to a field, parameter or variable where it is being written.
50 */
51 public static final String WRITE = "WRITE";
52
53}