com.mysema.query.types.expr
Interface EList<E>

Type Parameters:
E - component type
All Superinterfaces:
ECollection<List<E>,E>
All Known Implementing Classes:
PList

public interface EList<E>
extends ECollection<List<E>,E>

EList represents java.util.List typed expressions

Author:
tiwe
See Also:
List

Method Summary
 Expr<E> get(Expr<Integer> index)
          Indexed access
 Expr<E> get(int index)
          Indexed access
 
Methods inherited from interface com.mysema.query.types.expr.ECollection
contains, contains, getElementType, isEmpty, isNotEmpty, size
 

Method Detail

get

Expr<E> get(Expr<Integer> index)
Indexed access

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

get

Expr<E> get(@Nonnegative
            int index)
Indexed access

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


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