Java org.eclipse.jdt.core.search IJavaSearchConstants fields, constructors, methods, implement or subclass

Example usage for Java org.eclipse.jdt.core.search IJavaSearchConstants fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.eclipse.jdt.core.search IJavaSearchConstants.

The text is from its open source code.

Implementation

org.eclipse.jdt.core.search.IJavaSearchConstants has the following implementations.
Click this link to see all its implementation.

Field

intUNKNOWN
The nature of searched element or the nature of match in unknown.
intTYPE
The searched element is a type, which may include classes, interfaces, enums, and annotation types.
intMETHOD
The searched element is a method.
intPACKAGE
The searched element is a package.
intCONSTRUCTOR
The searched element is a constructor.
intFIELD
The searched element is a field.
intCLASS
The searched element is a class.
intINTERFACE
The searched element is an interface.
intENUM
The searched element is an enum.
intANNOTATION_TYPE
The searched element is an annotation type.
intCLASS_AND_ENUM
The searched element is a class or enum type.
intCLASS_AND_INTERFACE
The searched element is a class or interface type.
intINTERFACE_AND_ANNOTATION
The searched element is an interface or annotation type.
intDECLARATIONS
The search result is a declaration.
intIMPLEMENTORS
The search result is a type that implements an interface or extends a class.
intREFERENCES
The search result is a reference.
intALL_OCCURRENCES
The search result is a declaration, a reference, or an implementer of an interface.
intREAD_ACCESSES
When searching for field matches, it will exclusively find read accesses, as opposed to write accesses.
intWRITE_ACCESSES
When searching for field matches, it will exclusively find write accesses, as opposed to read accesses.
intIGNORE_DECLARING_TYPE
Ignore declaring type while searching result.
intIGNORE_RETURN_TYPE
Ignore return type while searching result.
intFIELD_DECLARATION_TYPE_REFERENCE
Return only type references used as the type of a field declaration.
intLOCAL_VARIABLE_DECLARATION_TYPE_REFERENCE
Return only type references used as the type of a local variable declaration.
intPARAMETER_DECLARATION_TYPE_REFERENCE
Return only type references used as the type of a method parameter declaration.
intSUPERTYPE_TYPE_REFERENCE
Return only type references used as a super type or as a super interface.
intTHROWS_CLAUSE_TYPE_REFERENCE
Return only type references used in a throws clause.
intCAST_TYPE_REFERENCE
Return only type references used in a cast expression.
intCATCH_TYPE_REFERENCE
Return only type references used in a catch header.
intCLASS_INSTANCE_CREATION_TYPE_REFERENCE
Return only type references used in class instance creation.
intRETURN_TYPE_REFERENCE
Return only type references used as a method return type.
intIMPORT_DECLARATION_TYPE_REFERENCE
Return only type references used in an import declaration.
intANNOTATION_TYPE_REFERENCE
Return only type references used as an annotation.
intTYPE_ARGUMENT_TYPE_REFERENCE
Return only type references used as a type argument in a parameterized type or a parameterized method.
intTYPE_VARIABLE_BOUND_TYPE_REFERENCE
Return only type references used as a type variable bound.
intWILDCARD_BOUND_TYPE_REFERENCE
Return only type references used as a wildcard bound.
intINSTANCEOF_TYPE_REFERENCE
Return only type references used as a type of an instanceof expression.
intSUPER_REFERENCE
Return only super field accesses or super method invocations (e.g.
intQUALIFIED_REFERENCE
Return only qualified field accesses or qualified method invocations.
intTHIS_REFERENCE
Return only primary field accesses or primary method invocations (e.g.
intIMPLICIT_THIS_REFERENCE
Return only field accesses or method invocations without any qualification.
intMETHOD_REFERENCE_EXPRESSION
Return only method reference expressions, e.g.
intEXACT_MATCH
The search pattern matches exactly the search result, that is, the source of the search result equals the search pattern.
booleanCASE_SENSITIVE
The search pattern matches the search result only if cases are the same.
intFORCE_IMMEDIATE_SEARCH
The search operation starts immediately, even if the underlying indexer has not finished indexing the workspace.
intCANCEL_IF_NOT_READY_TO_SEARCH
The search operation throws an org.eclipse.core.runtime.OperationCanceledException if the underlying indexer has not finished indexing the workspace.
intWAIT_UNTIL_READY_TO_SEARCH
The search operation waits for the underlying indexer to finish indexing the workspace before starting the search.