Uses of Interface
org.eclipse.persistence.jpa.jpql.utility.iterable.ListIterable
-
Packages that use ListIterable Package Description org.eclipse.persistence.jpa.jpql.parser This is the core of Hermes, this package contains the classes that can parse a JPQL query.org.eclipse.persistence.jpa.jpql.tools org.eclipse.persistence.jpa.jpql.tools.model The classes defined in this package define the state model API, a state model can be used to manually or programmatically create and edit a JPQL query.org.eclipse.persistence.jpa.jpql.tools.model.query This package contains theStateObjectclasses that represents a JPQL query.org.eclipse.persistence.jpa.jpql.tools.utility.iterable org.eclipse.persistence.jpa.jpql.utility.iterable -
-
Uses of ListIterable in org.eclipse.persistence.jpa.jpql.parser
Methods in org.eclipse.persistence.jpa.jpql.parser that return ListIterable Modifier and Type Method Description ListIterable<Expression>AbstractExpression. children()ListIterable<Expression>Expression. children()Returns the children of thisExpression.ListIterable<Expression>AbstractExpression. orderedChildren()ListIterable<Expression>Expression. orderedChildren()Returns the list representing thisExpressionand its children.ListIterable<String>AbstractPathExpression. paths()Returns the segments in the state field path in order. -
Uses of ListIterable in org.eclipse.persistence.jpa.jpql.tools
Methods in org.eclipse.persistence.jpa.jpql.tools that return ListIterable Modifier and Type Method Description ListIterable<TextEdit>DefaultRefactoringDelta. textEdits() -
Uses of ListIterable in org.eclipse.persistence.jpa.jpql.tools.model
Methods in org.eclipse.persistence.jpa.jpql.tools.model that return ListIterable Modifier and Type Method Description ListIterable<T>IListChangeEvent. items()Returns the list of items that have caused the original list to change.ListIterable<T>ListChangeEvent. items() -
Uses of ListIterable in org.eclipse.persistence.jpa.jpql.tools.model.query
Methods in org.eclipse.persistence.jpa.jpql.tools.model.query that return ListIterable Modifier and Type Method Description ListIterable<? extends VariableDeclarationStateObject>AbstractFromClauseStateObject. declarations()ListIterable<VariableDeclarationStateObject>AbstractModifyClauseStateObject. declarations()ListIterable<? extends VariableDeclarationStateObject>AbstractSelectStatementStateObject. declarations()Returns the list ofVariableDeclarationStateObjectdefining the variable declarations, which are mapping an entity to a variable or a collection-valued member to a variable.ListIterable<? extends VariableDeclarationStateObject>DeclarationStateObject. declarations()Returns the list of declarations declared in the declaration clause of the current query.ListIterable<IdentificationVariableStateObject>AbstractIdentificationVariableDeclarationStateObject. identificationVariables()ListIterable<IdentificationVariableStateObject>AbstractRangeVariableDeclarationStateObject. identificationVariables()ListIterable<IdentificationVariableStateObject>CollectionMemberDeclarationStateObject. identificationVariables()ListIterable<IdentificationVariableStateObject>VariableDeclarationStateObject. identificationVariables()Returns theIdentificationVariableStateObjectthat are used by this state object.ListIterable<? extends T>AbstractListHolderStateObject. items()ListIterable<String>AbstractPathExpressionStateObject. items()ListIterable<StateObject>CoalesceExpressionStateObject. items()ListIterable<JoinStateObject>DerivedPathIdentificationVariableDeclarationStateObject. items()ListIterable<StateObject>FunctionExpressionStateObject. items()ListIterable<? extends T>ListHolderStateObject. items()Returns anListIterableover the children.ListIterable<StateObject>SelectClauseStateObject. items()ListIterable<UpdateItemStateObject>UpdateClauseStateObject. items()ListIterable<String>UpdateItemStateObject. items()Returns the segments in the state field path in order.ListIterable<String>JoinStateObject. joinAssociationPaths()Returns the segments in the state field path in order.protected <T> ListIterable<IListChangeListener<T>>ChangeSupport. listChangeListeners(String listName)protected ListIterable<IPropertyChangeListener<?>>ChangeSupport. propertyChangeListeners(String propertyName) -
Uses of ListIterable in org.eclipse.persistence.jpa.jpql.tools.utility.iterable
Classes in org.eclipse.persistence.jpa.jpql.tools.utility.iterable that implement ListIterable Modifier and Type Class Description classSingleElementListIterable<E>ASingleElementListIterablereturns aListIteratorthat holds a single element and returns it with the first call toListIterator.next(), at which point it will returnfalseto any subsequent call toListIterator.hasNext(). -
Uses of ListIterable in org.eclipse.persistence.jpa.jpql.utility.iterable
Classes in org.eclipse.persistence.jpa.jpql.utility.iterable that implement ListIterable Modifier and Type Class Description classCloneListIterable<E>Pull together mutator state and behavior for subclasses.classSnapshotCloneListIterable<E>ASnapshotCloneListIterablereturns a list iterator on a "snapshot" of a list, allowing for concurrent access to the original list.
-