public class StringSet extends java.lang.Object
Constructor and Description |
---|
StringSet()   |
StringSet(StringSet arg0)   |
Modifier and Type | Method and Description |
---|---|
void |
clear()   |
void |
del(java.lang.String key)   |
void |
delete()
Explicitly deletes the underlying native object.
|
boolean |
empty()   |
java.lang.String |
get(java.lang.String key)   |
boolean |
has_key(java.lang.String key)   |
void |
insert(java.lang.String key)   |
long |
size()   |
public StringSet()
public void clear()
public void del(java.lang.String key)
public void delete()
In general, application software will not need to call this method directly. The Java language binding for libSBML is implemented as a language wrapper that provides a Java interface to libSBML's underlying C++/C code. Some of the Java methods return objects that are linked to objects created not by Java code, but by C++ code. The Java objects wrapped around them will be deleted when the garbage collector invokes the corresponding C++ finalize()
methods for the objects. The finalize()
methods in turn call the StringSet.delete()
method on the libSBML object.
This method is exposed in case calling programs want to ensure that the underlying object is freed immediately, and not at some arbitrary time determined by the Java garbage collector. In normal usage, callers do not need to invoke StringSet.delete()
themselves.
public boolean empty()
public java.lang.String get(java.lang.String key)
public boolean has_key(java.lang.String key)
public void insert(java.lang.String key)
public long size()