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 String
clean(String options)
void
close(Object options)
void
delete(String hexKey)
void
delete(String[] s)
boolean
exist(String hexKey)
boolean
exist(String[] s)
String
get(String hexKey)
String
get(String[] s)
void
insert(String[][] m)
void
insert(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
-
-