Interface ListExpression<E,Q extends SimpleExpression<? super E>>

Type Parameters:
E - component type
Q - result type for any() and get(int) results
All Superinterfaces:
CollectionExpression<List<E>,E>, Expression<List<E>>, ParameterizedExpression<List<E>>, Serializable
All Known Implementing Classes:
ListPath

public interface ListExpression<E,Q extends SimpleExpression<? super E>> extends CollectionExpression<List<E>,E>
ListExpression represents java.util.List typed expressions
Author:
tiwe
See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    get(@org.jetbrains.annotations.Range(from=0L, to=2147483647L) int index)
    Indexed access, gets the element at the given index
    Indexed access, gets the element at the given index

    Methods inherited from interface com.querydsl.core.types.Expression

    accept, getType

    Methods inherited from interface com.querydsl.core.types.ParameterizedExpression

    getParameter
  • Method Details

    • get

      Q get(Expression<Integer> index)
      Indexed access, gets the element at the given index
      Parameters:
      index - zero based index
      Returns:
      this.get(index)
      See Also:
    • get

      Q get(@org.jetbrains.annotations.Range(from=0L, to=2147483647L) int index)
      Indexed access, gets the element at the given index
      Parameters:
      index - zero based index
      Returns:
      this.get(index)
      See Also: