com.mysema.query.types.expr
Interface ListExpression<E,Q extends SimpleExpression<? super E>>

Type Parameters:
E - component type
All Superinterfaces:
CollectionExpression<List<E>,E>, Expression<List<E>>, ParametrizedExpression<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:
List

Method Summary
 Q get(Expression<Integer> index)
          Indexed access
 Q get(int index)
          Indexed access
 
Methods inherited from interface com.mysema.query.types.ParametrizedExpression
getParameter
 
Methods inherited from interface com.mysema.query.types.Expression
accept, getType
 

Method Detail

get

Q get(Expression<Integer> index)
Indexed access

Parameters:
index -
Returns:
this.get(index)
See Also:
List.get(int)

get

Q get(@Nonnegative
      int index)
Indexed access

Parameters:
index -
Returns:
this.get(index)
See Also:
List.get(int)


Copyright © 2007-2011 Mysema Ltd. All Rights Reserved.