Interface IStructuredSelection

All Superinterfaces:
ISelection, Iterable
All Known Subinterfaces:
ITreeSelection
All Known Implementing Classes:
StructuredSelection, TreeSelection

public interface IStructuredSelection extends ISelection, Iterable
A selection containing elements.
  • Method Summary Link icon

    Modifier and Type
    Method
    Description
    Returns the first element in this selection, or null if the selection is empty.
    Returns an iterator over the elements of this selection.
    int
    Returns the number of elements selected in this selection.
    default Stream<Object>
    Returns the elements in this selection as a Stream.
    Returns the elements in this selection as an array.
    Returns the elements in this selection as a List.

    Methods inherited from interface org.eclipse.jface.viewers.ISelection Link icon

    isEmpty

    Methods inherited from interface java.lang.Iterable Link icon

    forEach, spliterator
  • Method Details Link icon

    • getFirstElement Link icon

      Object getFirstElement()
      Returns the first element in this selection, or null if the selection is empty.
      Returns:
      an element, or null if none
    • iterator Link icon

      Iterator iterator()
      Returns an iterator over the elements of this selection.
      Specified by:
      iterator in interface Iterable
      Returns:
      an iterator over the selected elements
    • size Link icon

      int size()
      Returns the number of elements selected in this selection.
      Returns:
      the number of elements selected
    • toArray Link icon

      Object[] toArray()
      Returns the elements in this selection as an array.
      Returns:
      the selected elements as an array
    • toList Link icon

      List toList()
      Returns the elements in this selection as a List.
      Returns:
      the selected elements as a list
    • stream Link icon

      default Stream<Object> stream()
      Returns the elements in this selection as a Stream.
      Returns:
      the selected elements as a stream
      Since:
      3.32