GlyphIdList

Inheritance: java.lang.Object, java.util.AbstractCollection, java.util.AbstractList, java.util.ArrayList

public class GlyphIdList extends ArrayList<GlyphId>

Represents glyph id list.

Methods

MethodDescription
toArray(T[] arg0)
add(E arg0)
add(GlyphId glyphId)Adds glyph id to the list.
add(int arg0, E arg1)
addAll(int arg0, Collection<? extends E> arg1)
addAll(Collection<? extends E> arg0)
clear()Clears the list.
clone()
contains(GlyphId glyphId)Returns true in case glyph id is in the list.
contains(Object arg0)
containsAll(Collection arg0)
ensureCapacity(int arg0)
equals(Object arg0)
forEach(Consumer<? super E> arg0)
get(int index)Returns glyph id by the index.
getClass()
hashCode()
indexOf(Object arg0)
isEmpty()
iterator()
lastIndexOf(Object arg0)
listIterator()
listIterator(int arg0)
notify()
notifyAll()
remove(GlyphId glyphId)Removes glyph id from the list.
remove(int arg0)
remove(Object arg0)
removeAll(Collection arg0)
removeIf(Predicate<? super E> arg0)
replaceAll(UnaryOperator arg0)
retainAll(Collection arg0)
set(int arg0, E arg1)
size()
sort(Comparator<? super E> arg0)
spliterator()
subList(int arg0, int arg1)
toArray()
toString()
trimToSize()
wait()
wait(long arg0)
wait(long arg0, int arg1)

toArray(T[] arg0)

public T[] <T>toArray(T[] arg0)

Parameters:

ParameterTypeDescription
arg0T[]

Returns: T[]

add(E arg0)

public boolean add(E arg0)

Parameters:

ParameterTypeDescription
arg0E

Returns: boolean

add(GlyphId glyphId)

public boolean add(GlyphId glyphId)

Adds glyph id to the list.

Parameters:

ParameterTypeDescription
glyphIdGlyphIdglyph identifier

Returns: boolean

add(int arg0, E arg1)

public void add(int arg0, E arg1)

Parameters:

ParameterTypeDescription
arg0int
arg1E

addAll(int arg0, Collection<? extends E> arg1)

public boolean addAll(int arg0, Collection<? extends E> arg1)

Parameters:

ParameterTypeDescription
arg0int
arg1java.util.Collection<? extends E>

Returns: boolean

addAll(Collection<? extends E> arg0)

public boolean addAll(Collection<? extends E> arg0)

Parameters:

ParameterTypeDescription
arg0java.util.Collection<? extends E>

Returns: boolean

clear()

public void clear()

Clears the list.

clone()

public Object clone()

Returns: java.lang.Object

contains(GlyphId glyphId)

public boolean contains(GlyphId glyphId)

Returns true in case glyph id is in the list.

Parameters:

ParameterTypeDescription
glyphIdGlyphIdglyph identifier

Returns: boolean - true in case glyph id is in the list, otherwise false

contains(Object arg0)

public boolean contains(Object arg0)

Parameters:

ParameterTypeDescription
arg0java.lang.Object

Returns: boolean

containsAll(Collection arg0)

public boolean containsAll(Collection<?> arg0)

Parameters:

ParameterTypeDescription
arg0java.util.Collection

Returns: boolean

ensureCapacity(int arg0)

public void ensureCapacity(int arg0)

Parameters:

ParameterTypeDescription
arg0int

equals(Object arg0)

public boolean equals(Object arg0)

Parameters:

ParameterTypeDescription
arg0java.lang.Object

Returns: boolean

forEach(Consumer<? super E> arg0)

public void forEach(Consumer<? super E> arg0)

Parameters:

ParameterTypeDescription
arg0java.util.function.Consumer<? super E>

get(int index)

public GlyphId get(int index)

Returns glyph id by the index.

Parameters:

ParameterTypeDescription
indexintindex of glyph in list

Returns: GlyphId

getClass()

public final native Class<?> getClass()

Returns: java.lang.Class

hashCode()

public int hashCode()

Returns: int

indexOf(Object arg0)

public int indexOf(Object arg0)

Parameters:

ParameterTypeDescription
arg0java.lang.Object

Returns: int

isEmpty()

public boolean isEmpty()

Returns: boolean

iterator()

public Iterator<E> iterator()

Returns: java.util.Iterator

lastIndexOf(Object arg0)

public int lastIndexOf(Object arg0)

Parameters:

ParameterTypeDescription
arg0java.lang.Object

Returns: int

listIterator()

public ListIterator<E> listIterator()

Returns: java.util.ListIterator

listIterator(int arg0)

public ListIterator<E> listIterator(int arg0)

Parameters:

ParameterTypeDescription
arg0int

Returns: java.util.ListIterator

notify()

public final native void notify()

notifyAll()

public final native void notifyAll()

remove(GlyphId glyphId)

public boolean remove(GlyphId glyphId)

Removes glyph id from the list.

Parameters:

ParameterTypeDescription
glyphIdGlyphIdglyph identifier

Returns: boolean - true if item is successfully removed; otherwise, false

remove(int arg0)

public E remove(int arg0)

Parameters:

ParameterTypeDescription
arg0int

Returns: E

remove(Object arg0)

public boolean remove(Object arg0)

Parameters:

ParameterTypeDescription
arg0java.lang.Object

Returns: boolean

removeAll(Collection arg0)

public boolean removeAll(Collection<?> arg0)

Parameters:

ParameterTypeDescription
arg0java.util.Collection

Returns: boolean

removeIf(Predicate<? super E> arg0)

public boolean removeIf(Predicate<? super E> arg0)

Parameters:

ParameterTypeDescription
arg0java.util.function.Predicate<? super E>

Returns: boolean

replaceAll(UnaryOperator arg0)

public void replaceAll(UnaryOperator<E> arg0)

Parameters:

ParameterTypeDescription
arg0java.util.function.UnaryOperator

retainAll(Collection arg0)

public boolean retainAll(Collection<?> arg0)

Parameters:

ParameterTypeDescription
arg0java.util.Collection

Returns: boolean

set(int arg0, E arg1)

public E set(int arg0, E arg1)

Parameters:

ParameterTypeDescription
arg0int
arg1E

Returns: E

size()

public int size()

Returns: int

sort(Comparator<? super E> arg0)

public void sort(Comparator<? super E> arg0)

Parameters:

ParameterTypeDescription
arg0java.util.Comparator<? super E>

spliterator()

public Spliterator<E> spliterator()

Returns: java.util.Spliterator

subList(int arg0, int arg1)

public List<E> subList(int arg0, int arg1)

Parameters:

ParameterTypeDescription
arg0int
arg1int

Returns: java.util.List

toArray()

public Object[] toArray()

Returns: java.lang.Object[]

toString()

public String toString()

Returns: java.lang.String

trimToSize()

public void trimToSize()

wait()

public final void wait()

wait(long arg0)

public final native void wait(long arg0)

Parameters:

ParameterTypeDescription
arg0long

wait(long arg0, int arg1)

public final void wait(long arg0, int arg1)

Parameters:

ParameterTypeDescription
arg0long
arg1int