public static interface Search.SearchPerformanceInfo
Modifier and Type | Field and Description |
---|---|
static int |
CHECKED_CONSTRAINTS
Performance field describing the total number of constraint
checks that were performed during the entire search.
|
static int |
IGNORED_ITEMS
Number of data items that were excluded by the pre-processing
stage.
|
static int |
MATCHED_ITEMS
Number of data items declared to be valid matches prior to
the optional filtering of the post-processing stage.
|
static int |
PROCESSED_ITEMS
Number of data items that passed the optional stage of
pre-processing.
|
static int |
RETURNED_ITEMS
Number of data items that were considered to be matches
and survived the optional post-processing stage.
|
static int |
VISITED_EDGES
Performance field describing the total number of
edges that have been processed during a search operation.
|
static int |
VISITED_NODES
Performance field describing the total number of
nodes that have been processed during a search operation.
|
Modifier and Type | Method and Description |
---|---|
int |
getCores()
Returns the number of cores used by this search.
|
long |
getDuration()
Returns the amount of time in milliseconds this search
required.
|
long |
getPerformanceValue(int field)
Returns the stored value for the specified performance
field.
|
java.util.Date |
getTime()
Returns the exact time this search was executed
|
static final int VISITED_NODES
A value of -1
indicates that the search did not
use "nodes" as objects in the process.
static final int VISITED_EDGES
A value of -1
indicates that the search did not
use "edges" as objects in the process.
static final int CHECKED_CONSTRAINTS
static final int PROCESSED_ITEMS
static final int IGNORED_ITEMS
PROCESSED_ITEMS
is exactly the number of items that was passed to the search
in the first place.static final int MATCHED_ITEMS
static final int RETURNED_ITEMS
java.util.Date getTime()
long getDuration()
long getPerformanceValue(int field)
int getCores()