OClass - getClassInvolvedIndexes()
This method retrieves indexes that contain the given field names as their first keys.
Retrieving Class Involved Indexes
Syntax
// METHOD 1
Set<OIndex<?>> OClass().getClassInvolvedIndexes(Collection<String> colFields)
// METHOD 2
Set<OIndex<?>> OClass().getClassInvolvedIndexes(String... strFields)
Argument | Type | Description |
---|---|---|
colFields | Collection <String> | Defines the fields to check |
strFields | String | Defines the fields to check |
Return Value
This method returns a Set
instance that contains instances of OIndex<?>
for each index that includes the given fields as first keys.