Interface IJavaSearchConstants
- All Known Implementing Classes:
CancelableNameEnvironment,SearchableEnvironment
This interface defines the constants used by the search engine.
This interface declares constants only.
- See Also:
SearchEngine
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic intThe search result is a declaration, a reference, or an implementer of an interface.static char[]The unnamed module is represented by this constant for making the intent explicit in searches involving modulesstatic intThe searched element is an annotation type.static intReturn only type references used as an annotation.static intThe search operation throws anorg.eclipse.core.runtime.OperationCanceledExceptionif the underlying indexer has not finished indexing the workspace.static booleanDeprecated.static booleanDeprecated.Use the methods that take the matchMode withSearchPattern.R_CASE_SENSITIVEas a matchRule instead.static intReturn only type references used in a cast expression.static intReturn only type references used in a catch header.static intThe searched element is a class.static intThe searched element is a class or enum type.static intThe searched element is a class or interface type.static intReturn only type references used in class instance creation.static intThe searched element is a constructor.static intThe search result is a declaration.static intThe searched element is an enum.static intDeprecated.UseSearchPattern.R_EXACT_MATCHinstead.static intThe searched element is a field.static intReturn only type references used as the type of a field declaration.static intThe search operation starts immediately, even if the underlying indexer has not finished indexing the workspace.static intIgnore declaring type while searching result.static intIgnore return type while searching result.static intThe search result is a type that implements an interface or extends a class.static intReturn only field accesses or method invocations without any qualification.static intReturn only type references used in an import declaration.static intReturn only type references used as a type of aninstanceofexpression.static intThe searched element is an interface.static intThe searched element is an interface or annotation type.static intReturn only type references used as the type of a local variable declaration.static intThe searched element is a method.static intReturn only method reference expressions, e.g.static intThe searched element is a module.static intWhen searching for Type Declaration matches, and if a module is given, this will find type declaration matches in this module as well as the dependent module graph of the given module.static intThe searched element is a package.static intReturn only type references used as the type of a method parameter declaration.static intDeprecated.UseSearchPattern.R_PATTERN_MATCHinstead.static intReturn only type references used as a permit type (Java 15)static intDeprecated.UseSearchPattern.R_PREFIX_MATCHinstead.static intReturn only qualified field accesses or qualified method invocations.static intWhen searching for field matches, it will exclusively find read accesses, as opposed to write accesses.static intThe search result is a reference.static intReturn only type references used as a method return type.static intReturn only super field accesses or super method invocations (e.g.static intReturn only type references used as a super type or as a super interface.static intReturn only primary field accesses or primary method invocations (e.g.static intReturn only type references used in a throws clause.static intThe searched element is a type, which may include classes, interfaces, enums, and annotation types.static intReturn only type references used as a type argument in a parameterized type or a parameterized method.static intReturn only type references used as a type variable bound.static intThe nature of searched element or the nature of match in unknown.static intThe search operation waits for the underlying indexer to finish indexing the workspace before starting the search.static intReturn only type references used as a wildcard bound.static intWhen searching for field matches, it will exclusively find write accesses, as opposed to read accesses.
-
Field Details
-
UNKNOWN
static final int UNKNOWNThe nature of searched element or the nature of match in unknown.- See Also:
- Constant Field Values
-
TYPE
static final int TYPEThe searched element is a type, which may include classes, interfaces, enums, and annotation types.- See Also:
- Constant Field Values
-
METHOD
static final int METHODThe searched element is a method.- See Also:
- Constant Field Values
-
PACKAGE
static final int PACKAGEThe searched element is a package.- See Also:
- Constant Field Values
-
CONSTRUCTOR
static final int CONSTRUCTORThe searched element is a constructor.- See Also:
- Constant Field Values
-
FIELD
static final int FIELDThe searched element is a field.- See Also:
- Constant Field Values
-
CLASS
static final int CLASSThe searched element is a class. More selective than usingTYPE.- See Also:
- Constant Field Values
-
INTERFACE
static final int INTERFACEThe searched element is an interface. More selective than usingTYPE.- See Also:
- Constant Field Values
-
ENUM
static final int ENUMThe searched element is an enum. More selective than usingTYPE.- Since:
- 3.1
- See Also:
- Constant Field Values
-
ANNOTATION_TYPE
static final int ANNOTATION_TYPEThe searched element is an annotation type. More selective than usingTYPE.- Since:
- 3.1
- See Also:
- Constant Field Values
-
CLASS_AND_ENUM
static final int CLASS_AND_ENUMThe searched element is a class or enum type. More selective than usingTYPE.- Since:
- 3.1
- See Also:
- Constant Field Values
-
CLASS_AND_INTERFACE
static final int CLASS_AND_INTERFACEThe searched element is a class or interface type. More selective than usingTYPE.- Since:
- 3.1
- See Also:
- Constant Field Values
-
INTERFACE_AND_ANNOTATION
static final int INTERFACE_AND_ANNOTATIONThe searched element is an interface or annotation type. More selective than usingTYPE.- Since:
- 3.3
- See Also:
- Constant Field Values
-
MODULE
static final int MODULEThe searched element is a module.- Since:
- 3.14
- See Also:
- Constant Field Values
-
DECLARATIONS
static final int DECLARATIONSThe search result is a declaration. Can be used in conjunction with any of the nature of searched elements so as to better narrow down the search.- See Also:
- Constant Field Values
-
IMPLEMENTORS
static final int IMPLEMENTORSThe search result is a type that implements an interface or extends a class. Used in conjunction with either TYPE or CLASS or INTERFACE, it will respectively search for any type implementing/extending a type, or rather exclusively search for classes implementing/extending the type, or interfaces extending the type.- See Also:
- Constant Field Values
-
REFERENCES
static final int REFERENCESThe search result is a reference. Can be used in conjunction with any of the nature of searched elements so as to better narrow down the search. References can contain implementers since they are more generic kind of matches.- See Also:
- Constant Field Values
-
ALL_OCCURRENCES
static final int ALL_OCCURRENCESThe search result is a declaration, a reference, or an implementer of an interface. Can be used in conjunction with any of the nature of searched elements so as to better narrow down the search.- See Also:
- Constant Field Values
-
READ_ACCESSES
static final int READ_ACCESSESWhen searching for field matches, it will exclusively find read accesses, as opposed to write accesses. Note that some expressions are considered both as field read/write accesses: for example, x++; x+= 1;- Since:
- 2.0
- See Also:
- Constant Field Values
-
WRITE_ACCESSES
static final int WRITE_ACCESSESWhen searching for field matches, it will exclusively find write accesses, as opposed to read accesses. Note that some expressions are considered both as field read/write accesses: for example, x++; x+= 1;- Since:
- 2.0
- See Also:
- Constant Field Values
-
MODULE_GRAPH
static final int MODULE_GRAPHWhen searching for Type Declaration matches, and if a module is given, this will find type declaration matches in this module as well as the dependent module graph of the given module.- Since:
- 3.14
- See Also:
- Constant Field Values
-
IGNORE_DECLARING_TYPE
static final int IGNORE_DECLARING_TYPEIgnore declaring type while searching result. Can be used in conjunction with any of the nature of match.- Since:
- 3.1
- See Also:
- Constant Field Values
-
IGNORE_RETURN_TYPE
static final int IGNORE_RETURN_TYPEIgnore return type while searching result. Can be used in conjunction with any other nature of match. Note that:- for fields search, pattern will ignore field type
- this flag will have no effect for types search
- Since:
- 3.1
- See Also:
- Constant Field Values
-
FIELD_DECLARATION_TYPE_REFERENCE
static final int FIELD_DECLARATION_TYPE_REFERENCEReturn only type references used as the type of a field declaration.When this flag is set, only
TypeReferenceMatchmatches will be returned.- Since:
- 3.4
- See Also:
- Constant Field Values
-
LOCAL_VARIABLE_DECLARATION_TYPE_REFERENCE
static final int LOCAL_VARIABLE_DECLARATION_TYPE_REFERENCEReturn only type references used as the type of a local variable declaration.When this flag is set, only
TypeReferenceMatchmatches will be returned.- Since:
- 3.4
- See Also:
- Constant Field Values
-
PARAMETER_DECLARATION_TYPE_REFERENCE
static final int PARAMETER_DECLARATION_TYPE_REFERENCEReturn only type references used as the type of a method parameter declaration.When this flag is set, only
TypeReferenceMatchmatches will be returned.- Since:
- 3.4
- See Also:
- Constant Field Values
-
SUPERTYPE_TYPE_REFERENCE
static final int SUPERTYPE_TYPE_REFERENCEReturn only type references used as a super type or as a super interface.When this flag is set, only
TypeReferenceMatchmatches will be returned.- Since:
- 3.4
- See Also:
- Constant Field Values
-
THROWS_CLAUSE_TYPE_REFERENCE
static final int THROWS_CLAUSE_TYPE_REFERENCEReturn only type references used in a throws clause.When this flag is set, only
TypeReferenceMatchmatches will be returned.- Since:
- 3.4
- See Also:
- Constant Field Values
-
CAST_TYPE_REFERENCE
static final int CAST_TYPE_REFERENCEReturn only type references used in a cast expression.When this flag is set, only
TypeReferenceMatchmatches will be returned.- Since:
- 3.4
- See Also:
- Constant Field Values
-
CATCH_TYPE_REFERENCE
static final int CATCH_TYPE_REFERENCEReturn only type references used in a catch header.When this flag is set, only
TypeReferenceMatchmatches will be returned.- Since:
- 3.4
- See Also:
- Constant Field Values
-
CLASS_INSTANCE_CREATION_TYPE_REFERENCE
static final int CLASS_INSTANCE_CREATION_TYPE_REFERENCEReturn only type references used in class instance creation.When this flag is set, only
TypeReferenceMatchmatches will be returned.Example:
public class Test { Test() {} static Test bar() { return new Test(); } }Searching references to the typeTestusing this flag in the above snippet will match only the reference in italic.Note that array creations are not returned when using this flag.
- Since:
- 3.4
- See Also:
- Constant Field Values
-
RETURN_TYPE_REFERENCE
static final int RETURN_TYPE_REFERENCEReturn only type references used as a method return type.When this flag is set, only
TypeReferenceMatchmatches will be returned.- Since:
- 3.4
- See Also:
- Constant Field Values
-
IMPORT_DECLARATION_TYPE_REFERENCE
static final int IMPORT_DECLARATION_TYPE_REFERENCEReturn only type references used in an import declaration.When this flag is set, only
TypeReferenceMatchmatches will be returned.- Since:
- 3.4
- See Also:
- Constant Field Values
-
ANNOTATION_TYPE_REFERENCE
static final int ANNOTATION_TYPE_REFERENCEReturn only type references used as an annotation.When this flag is set, only
TypeReferenceMatchmatches will be returned.- Since:
- 3.4
- See Also:
- Constant Field Values
-
TYPE_ARGUMENT_TYPE_REFERENCE
static final int TYPE_ARGUMENT_TYPE_REFERENCEReturn only type references used as a type argument in a parameterized type or a parameterized method.When this flag is set, only
TypeReferenceMatchmatches will be returned.- Since:
- 3.4
- See Also:
- Constant Field Values
-
TYPE_VARIABLE_BOUND_TYPE_REFERENCE
static final int TYPE_VARIABLE_BOUND_TYPE_REFERENCEReturn only type references used as a type variable bound.When this flag is set, only
TypeReferenceMatchmatches will be returned.- Since:
- 3.4
- See Also:
- Constant Field Values
-
WILDCARD_BOUND_TYPE_REFERENCE
static final int WILDCARD_BOUND_TYPE_REFERENCEReturn only type references used as a wildcard bound.When this flag is set, only
TypeReferenceMatchmatches will be returned.- Since:
- 3.4
- See Also:
- Constant Field Values
-
INSTANCEOF_TYPE_REFERENCE
static final int INSTANCEOF_TYPE_REFERENCEReturn only type references used as a type of aninstanceofexpression.When this flag is set, only
TypeReferenceMatchmatches will be returned.- Since:
- 3.4
- See Also:
- Constant Field Values
-
SUPER_REFERENCE
static final int SUPER_REFERENCEReturn only super field accesses or super method invocations (e.g. using thesuperqualifier).When this flag is set, the kind of returned matches will depend on the specified nature of the searched element:
- for the
FIELDnature, onlyFieldReferenceMatchmatches will be returned, - for the
METHODnature, onlyMethodReferenceMatchmatches will be returned.
- Since:
- 3.4
- See Also:
- Constant Field Values
- for the
-
QUALIFIED_REFERENCE
static final int QUALIFIED_REFERENCEReturn only qualified field accesses or qualified method invocations.When this flag is set, the kind of returned matches will depend on the specified nature of the searched element:
- for the
FIELDnature, onlyFieldReferenceMatchmatches will be returned, - for the
METHODnature, onlyMethodReferenceMatchmatches will be returned.
- Since:
- 3.4
- See Also:
- Constant Field Values
- for the
-
THIS_REFERENCE
static final int THIS_REFERENCEReturn only primary field accesses or primary method invocations (e.g. using thethisqualifier).When this flag is set, the kind of returned matches will depend on the specified nature of the searched element:
- for the
FIELDnature, onlyFieldReferenceMatchmatches will be returned, - for the
METHODnature, onlyMethodReferenceMatchmatches will be returned.
- Since:
- 3.4
- See Also:
- Constant Field Values
- for the
-
IMPLICIT_THIS_REFERENCE
static final int IMPLICIT_THIS_REFERENCEReturn only field accesses or method invocations without any qualification.When this flag is set, the kind of returned matches will depend on the specified nature of the searched element:
- for the
FIELDnature, onlyFieldReferenceMatchmatches will be returned, - for the
METHODnature, onlyMethodReferenceMatchmatches will be returned.
- Since:
- 3.4
- See Also:
- Constant Field Values
- for the
-
METHOD_REFERENCE_EXPRESSION
static final int METHOD_REFERENCE_EXPRESSIONReturn only method reference expressions, e.g.A::foo.When this flag is set, only
MethodReferenceMatchmatches will be returned.- Since:
- 3.10
- See Also:
- Constant Field Values
-
PERMITTYPE_TYPE_REFERENCE
static final int PERMITTYPE_TYPE_REFERENCEReturn only type references used as a permit type (Java 15)When this flag is set, only
TypeReferenceMatchmatches will be returned.- Since:
- 3.24
- See Also:
- Constant Field Values
-
EXACT_MATCH
static final int EXACT_MATCHDeprecated.UseSearchPattern.R_EXACT_MATCHinstead.The search pattern matches exactly the search result, that is, the source of the search result equals the search pattern.- See Also:
- Constant Field Values
-
PREFIX_MATCH
static final int PREFIX_MATCHDeprecated.UseSearchPattern.R_PREFIX_MATCHinstead.The search pattern is a prefix of the search result.- See Also:
- Constant Field Values
-
PATTERN_MATCH
static final int PATTERN_MATCHDeprecated.UseSearchPattern.R_PATTERN_MATCHinstead.The search pattern contains one or more wild cards ('*') where a wild-card can replace 0 or more characters in the search result.- See Also:
- Constant Field Values
-
CASE_SENSITIVE
static final boolean CASE_SENSITIVEDeprecated.Use the methods that take the matchMode withSearchPattern.R_CASE_SENSITIVEas a matchRule instead.The search pattern matches the search result only if cases are the same.- See Also:
- Constant Field Values
-
CASE_INSENSITIVE
static final boolean CASE_INSENSITIVEDeprecated.Use the methods that take the matchMode withoutSearchPattern.R_CASE_SENSITIVEas a matchRule instead.The search pattern ignores cases in the search result.- See Also:
- Constant Field Values
-
FORCE_IMMEDIATE_SEARCH
static final int FORCE_IMMEDIATE_SEARCHThe search operation starts immediately, even if the underlying indexer has not finished indexing the workspace. Results will more likely not contain all the matches.- See Also:
- Constant Field Values
-
CANCEL_IF_NOT_READY_TO_SEARCH
static final int CANCEL_IF_NOT_READY_TO_SEARCHThe search operation throws anorg.eclipse.core.runtime.OperationCanceledExceptionif the underlying indexer has not finished indexing the workspace.- See Also:
- Constant Field Values
-
WAIT_UNTIL_READY_TO_SEARCH
static final int WAIT_UNTIL_READY_TO_SEARCHThe search operation waits for the underlying indexer to finish indexing the workspace before starting the search.- See Also:
- Constant Field Values
-
ALL_UNNAMED
static final char[] ALL_UNNAMEDThe unnamed module is represented by this constant for making the intent explicit in searches involving modules- Since:
- 3.14
-
SearchPattern.R_CASE_SENSITIVEas a matchRule instead.