Interface TkmHashTableInterface
-
- All Known Implementing Classes:
TkmHashTableImpl,TkmHashTableImplSQLITE
public interface TkmHashTableInterface- Author:
- giovanni.antino@h2tcoin.com
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Stringclean(String options)voidclose(Object options)voiddelete(String hexKey)voiddelete(String[] s)booleanexist(String hexKey)booleanexist(String[] s)Stringget(String hexKey)Stringget(String[] s)voidinsert(String[][] m)voidinsert(String hexKey, String base64urlValue)
-
-
-
Method Detail
-
insert
void insert(String hexKey, String base64urlValue) throws TkmDataException
- Parameters:
hexKey-base64urlValue-- Throws:
TkmDataException
-
insert
void insert(String[][] m) throws TkmDataException
- Throws:
TkmDataException
-
get
String get(String hexKey) throws TkmDataException
- Parameters:
hexKey-- Returns:
- Throws:
TkmDataException
-
get
String get(String[] s) throws TkmDataException
- Throws:
TkmDataException
-
exist
boolean exist(String hexKey) throws TkmDataException
- Parameters:
hexKey-- Returns:
- Throws:
TkmDataException
-
exist
boolean exist(String[] s) throws TkmDataException
- Throws:
TkmDataException
-
delete
void delete(String hexKey) throws TkmDataException
- Parameters:
hexKey-- Throws:
TkmDataException
-
delete
void delete(String[] s) throws TkmDataException
- Throws:
TkmDataException
-
clean
String clean(String options) throws TkmDataException
- Parameters:
options-- Returns:
- Throws:
TkmDataException
-
close
void close(Object options) throws TkmDataException
- Parameters:
options-- Throws:
TkmDataException
-
-