Java representation of a native Elektra key set, a container for keys.
More...
Inherits Iterable< Key >.
|
| KeySet (long nativePointer) |
| Constructor associating a new KeySet instance with a native pointer in long format. More...
|
|
| KeySet (long nativePointer, boolean suppressCleanUp) |
| Constructor associating a new KeySet instance with a native pointer in long format
Suppressing clean-up has been introduced for usage of this binding as JNI plug-in and should normally not be used in any other case. More...
|
|
| KeySet (Pointer pointer) |
| Constructor associating a new KeySet instance with a JNA pointer. More...
|
|
Pointer | getPointer () |
|
Java representation of a native Elektra key set, a container for keys.
◆ KeySet() [1/3]
org.libelektra.KeySet.KeySet |
( |
long |
nativePointer | ) |
|
|
inlineprotected |
Constructor associating a new KeySet instance with a native pointer in long format.
- Parameters
-
nativePointer | Native pointer to key set in long format |
◆ KeySet() [2/3]
org.libelektra.KeySet.KeySet |
( |
long |
nativePointer, |
|
|
boolean |
suppressCleanUp |
|
) |
| |
|
inlineprotected |
Constructor associating a new KeySet instance with a native pointer in long format
Suppressing clean-up has been introduced for usage of this binding as JNI plug-in and should normally not be used in any other case.
- Parameters
-
nativePointer | Native pointer to key set in long format |
suppressCleanUp | True to suppress native reference clean-up as soon as this KeySet instance becomes phantom reachable, false otherwise |
- See also
- release()
◆ KeySet() [3/3]
org.libelektra.KeySet.KeySet |
( |
Pointer |
pointer | ) |
|
|
inlineprotected |
Constructor associating a new KeySet instance with a JNA pointer.
- Parameters
-
- Exceptions
-
IllegalArgumentException | if is |
- See also
- release()
◆ append() [1/2]
KeySet org.libelektra.KeySet.append |
( |
Key |
key | ) |
|
|
inline |
Append key to key set.
- Parameters
-
- Returns
- This KeySet, enabling a fluent interface
- Exceptions
-
IllegalArgumentException | if is |
KeySetReleasedException | if this KeySet has already been released |
◆ append() [2/2]
Appends keys from key set.
- Parameters
-
- Returns
- This KeySet, enabling a fluent interface
- Exceptions
-
KeySetReleasedException | if this KeySet or the specified has already been released |
IllegalArgumentException | if is |
KeySetAppendException | if appending the failed |
◆ at()
Key org.libelektra.KeySet.at |
( |
int |
cursor | ) |
|
|
inline |
Gets the key at the given cursor position.
- Parameters
-
cursor | Cursor position used to fetch key; starting from 0 |
- Returns
- Key found at specified cursor position
- Exceptions
-
KeySetReleasedException | if this KeySet has already been released |
IndexOutOfBoundsException | if position is out of bounds |
- See also
- Key::release()
◆ copy()
Copies key references from.
to this KeySet
- Parameters
-
source | Key set that is used as source |
- Returns
- This KeySet, enabling a fluent interface
- Exceptions
-
KeySetReleasedException | if this KeySet or the specified has already been released |
IllegalArgumentException | if is |
◆ create() [1/3]
static KeySet org.libelektra.KeySet.create |
( |
| ) |
|
|
inlinestatic |
Constructs an empty KeySet with a default allocation hint of 16.
- Returns
- Newly allocated key set
- See also
- release()
◆ create() [2/3]
static KeySet org.libelektra.KeySet.create |
( |
int |
allocationHint, |
|
|
Key... |
keys |
|
) |
| |
|
inlinestatic |
Constructs a new KeySet containing the specified keys
Example: KeySet keySet = KeySet.create(10, Key.create("A"), Key.create("B"));.
- Parameters
-
allocationHint | Hint indicating the expected size of the key set |
keys | List of initial keys for the key set |
- Returns
- New key set containing the specified initial keys
- See also
- release()
◆ create() [3/3]
static KeySet org.libelektra.KeySet.create |
( |
Key... |
keys | ) |
|
|
inlinestatic |
◆ cut()
KeySet org.libelektra.KeySet.cut |
( |
Key |
cutpoint | ) |
|
|
inline |
Creates new key set with help of a cut point.
- Parameters
-
cutpoint | Key that is used as cutting point |
- Returns
- New KeySet containing all keys until the cutting point, this if null was provided
- Exceptions
-
KeySetReleasedException | if this KeySet has already been released |
IllegalArgumentException | if is |
- See also
- release()
◆ dup()
KeySet org.libelektra.KeySet.dup |
( |
| ) |
|
|
inline |
Duplicates the key set.
- Returns
- New KeySet containing the same key references as this KeySet does
- Exceptions
-
KeySetReleasedException | if this KeySet has already been released |
- See also
- release()
◆ first()
Key org.libelektra.KeySet.first |
( |
| ) |
|
|
inline |
Gets the key set head key.
- Returns
- First element of the key set
- Exceptions
-
KeySetReleasedException | if this KeySet has already been released |
NoSuchElementException | if key set is empty |
- See also
- Key::release()
◆ getPointer()
Pointer org.libelektra.KeySet.getPointer |
( |
| ) |
|
|
inlineprotected |
- Returns
- JNA pointer to the native pointer for this key set
- Exceptions
-
KeySetReleasedException | if this KeySet has already been released |
◆ iterator()
Iterator<Key> org.libelektra.KeySet.iterator |
( |
| ) |
|
|
inline |
◆ last()
Key org.libelektra.KeySet.last |
( |
| ) |
|
|
inline |
Gets the key set tail key.
- Returns
- Last element of the key set
- Exceptions
-
KeySetReleasedException | if this KeySet has already been released |
NoSuchElementException | if key set is empty |
- See also
- Key::release()
◆ lookup() [1/4]
Optional<Key> org.libelektra.KeySet.lookup |
( |
Key |
find | ) |
|
|
inline |
Search for a key in the key set.
- Parameters
-
- Returns
- Key if search successful, Optional#empty() otherwise
- Exceptions
-
KeySetReleasedException | if this KeySet has already been released |
IllegalArgumentException | if is |
- See also
- Key::release()
◆ lookup() [2/4]
Optional<Key> org.libelektra.KeySet.lookup |
( |
Key |
find, |
|
|
int |
options |
|
) |
| |
|
inline |
Search for a key in the key set.
- Parameters
-
find | Key used in search |
options | Custom search options; concatenation of flags |
- Returns
- Key if search successful, Optional#empty() otherwise
- Exceptions
-
KeySetReleasedException | if this KeySet has already been released |
IllegalArgumentException | if is |
- See also
- Key::release()
◆ lookup() [3/4]
Optional<Key> org.libelektra.KeySet.lookup |
( |
String |
find | ) |
|
|
inline |
Search for a key in the key set.
- Parameters
-
find | Key name used in search |
- Returns
- Key if search successful, Optional#empty() otherwise
- Exceptions
-
KeySetReleasedException | if this KeySet has already been released |
IllegalArgumentException | if is blank |
- See also
- Key::release()
◆ lookup() [4/4]
Optional<Key> org.libelektra.KeySet.lookup |
( |
String |
find, |
|
|
int |
options |
|
) |
| |
|
inline |
Search for a key in the key set.
- Parameters
-
find | Key name used in search |
options | Custom search options; concatenation of flags |
- Returns
- Key if search successful, Optional#empty() otherwise
- Exceptions
-
KeySetReleasedException | if this KeySet has already been released |
IllegalArgumentException | if is blank |
- See also
- Key::release()
◆ release()
void org.libelektra.KeySet.release |
( |
| ) |
|
|
inline |
Clean-up method to release key set reference by trying to free the native reference
Call this method if you have obtained a KeySet via any of its public methods or KDB#get(Key) and you do not longer need it.
If you do not manually release such key sets, they will get cleaned up by garbage collection as soon as they get phantom reachable. Therefore its encouraged to release key set instances as soon as you do not use them anymore.
◆ remove()
Key org.libelektra.KeySet.remove |
( |
int |
cursor | ) |
|
|
inline |
Returns key from key set and also removes it from the set.
- Parameters
-
cursor | Cursor position of the key to remove; starting from 0 |
- Returns
- Key found at given cursor position
- Exceptions
-
KeySetReleasedException | if this KeySet has already been released |
IndexOutOfBoundsException | if position is out of bounds |
- See also
- Key::release()
◆ size()
int org.libelektra.KeySet.size |
( |
| ) |
|
|
inline |
Indicates the key set size.
- Returns
- Number of keys contained by this key set
- Exceptions
-
KeySetReleasedException | if this KeySet has already been released |
◆ toString()
String org.libelektra.KeySet.toString |
( |
| ) |
|
|
inline |
Iterates though all keys in this key set and appends their representation to the output.
Uses the toString() function of the Key objects.
- Returns
- Represents this KeySet as string
The documentation for this class was generated from the following file: