Javolution 6.0.0 java
SortedTableService.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 
17 public interface SortedTableService<E> extends TableService<E> {
18 
25  boolean addIfAbsent(E element);
26 
31  int positionOf(E element);
32 
33  @Override
35 
36 }
javolution.util.service.SortedTableService.addIfAbsent
boolean addIfAbsent(E element)
javolution.util.service.SortedTableService.positionOf
int positionOf(E element)
javolution.util.service.SortedTableService.threadSafe
SortedTableService< E > threadSafe()
javolution.util.service.TableService
Definition: TableService.java:21
javolution.util.service.SortedTableService
Definition: SortedTableService.java:17