Javolution 6.0.0 java
TableService.java
Go to the documentation of this file.
1 /*
2  * Javolution - Java(TM) Solution for Real-Time and Embedded Systems
3  * Copyright (C) 2012 - Javolution (http://javolution.org/)
4  * All rights reserved.
5  *
6  * Permission to use, copy, modify, and distribute this software is
7  * freely granted, provided that this notice is preserved.
8  */
9 package javolution.util.service;
10 
11 import java.util.List;
12 import java.util.Deque;
13 import java.util.RandomAccess;
14 
21 public interface TableService<E> extends CollectionService<E>, List<E>, Deque<E>, RandomAccess {
22 
23 
24  @Override
25  TableService<E> subList(int fromIndex, int toIndex);
26 
27  @Override
29 
30 
31 }
javolution.util.service.TableService.subList
TableService< E > subList(int fromIndex, int toIndex)
javolution.util.service.CollectionService
Definition: CollectionService.java:25
javolution.util.service.TableService.threadSafe
TableService< E > threadSafe()
javolution.util.service.TableService
Definition: TableService.java:21