|
org.netbeans.modules.editor.lib/1 1.14.0 3 | |||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use ObjectArray | |
---|---|
org.netbeans.editor |
Uses of ObjectArray in org.netbeans.editor |
---|
Classes in org.netbeans.editor that implement ObjectArray | |
---|---|
class |
GapObjectArray
Implementation of ObjectArray that
contains a gap which helps to speed up inserts/removals
close to the gap. |
Methods in org.netbeans.editor that return ObjectArray | |
---|---|
ObjectArray |
ObjectArray.Modification.getArray()
|
Methods in org.netbeans.editor with parameters of type ObjectArray | |
---|---|
static int |
ObjectArrayUtilities.binarySearch(ObjectArray objectArray,
Object key)
Searches the specified object array for the specified object using the binary search algorithm. |
static int |
ObjectArrayUtilities.binarySearch(ObjectArray objectArray,
Object key,
Comparator c)
Perform binary search with the specified comparator. |
static void |
ObjectArrayUtilities.copyItems(ObjectArray srcObjectArray,
int srcStartIndex,
int srcEndIndex,
Object[] dest,
int destIndex)
Copy items from the given object array into destination array. |
static void |
ObjectArrayUtilities.copyItems(ObjectArray srcObjectArray,
Object[] dest)
Copy all items from the given object array into destination array. |
static int |
ObjectArrayUtilities.findIndex(ObjectArray objectArray,
Object item)
Get index of the occurrence of the given item in the object array by using binary search and scanning the adjacent items that are equal copmared to the searched item. |
static int |
ObjectArrayUtilities.findIndex(ObjectArray objectArray,
Object item,
Comparator c)
Get index of the occurrence of the given item in the object array by using binary search and scanning the adjacent items that are equal copmared to the searched item. |
static Object[] |
ObjectArrayUtilities.toArray(ObjectArray objectArray)
Create array and fill it with all the items from the given objectArray. |
static Object[] |
ObjectArrayUtilities.toArray(ObjectArray objectArray,
int startIndex,
int endIndex)
Create array and fill it with the items from the given objectArray. |
|
org.netbeans.modules.editor.lib/1 1.14.0 3 | |||||||||
PREV NEXT | FRAMES NO FRAMES |