Uses of Class
org.basex.util.list.StringList

Packages that use StringList
org.basex.core Database core classes. 
org.basex.core.cmd Database commands. 
org.basex.gui.dialog GUI Dialog Windows. 
org.basex.gui.layout Project specific GUI components. 
org.basex.io Input and Output classes. 
org.basex.io.serial   
org.basex.query XQuery implementation. 
org.basex.query.up   
org.basex.query.util.pkg   
org.basex.util.ft Full-text specific utility classes. 
org.basex.util.list   
 

Uses of StringList in org.basex.core
 

Fields in org.basex.core declared as StringList
 StringList LockResult.read
          List of databases to read lock.
 StringList LockResult.write
          List of databases to write lock.
 

Methods in org.basex.core that return StringList
static StringList Databases.backupPaths(java.lang.String db, Context ctx)
          Returns the paths of all backups of the specified database.
 StringList Databases.backups(java.lang.String prefix)
          Lists all available backups matching the specified prefix.
 StringList Databases.list()
          Lists all available databases and backups.
 StringList Databases.listDBs()
          Lists all available databases.
 StringList Databases.listDBs(java.lang.String name)
          Lists all available databases matching the given name.
 

Methods in org.basex.core with parameters of type StringList
 void Locking.acquire(Proc pr, StringList read, StringList write)
          Puts read and write locks the specified databases.
 void DBLocking.acquire(Proc pr, StringList read, StringList write)
           
protected  boolean Command.databases(StringList db, int a)
          Adds the names of the database that has been addressed by the argument index.
 void Context.downgrade(Proc pr, StringList write)
          Downgrades locks.
 void Locking.downgrade(StringList write)
          Unlock all string locked by a transaction.
 void DBLocking.downgrade(StringList write)
          Only keeps given write locks, downgrades the others to read locks.
 

Uses of StringList in org.basex.core.cmd
 

Methods in org.basex.core.cmd that return StringList
static StringList List.list(Context ctx)
          Returns a list of all databases.
 

Methods in org.basex.core.cmd with parameters of type StringList
static java.lang.String Find.findTable(StringList filter, TokenList cols, BoolList elem, byte[] tag, boolean root)
          Creates an XQuery representation for the specified table query.
 

Uses of StringList in org.basex.gui.dialog
 

Fields in org.basex.gui.dialog declared as StringList
 StringList DialogEdit.result
          Resulting update arguments.
 StringList DialogInsert.result
          Resulting update arguments.
 

Uses of StringList in org.basex.gui.layout
 

Methods in org.basex.gui.layout that return StringList
 StringList BaseXList.getValues()
          Returns all selected values.
 

Uses of StringList in org.basex.io
 

Methods in org.basex.io that return StringList
 StringList IOFile.descendants()
          Returns the relative paths of all descendant files.
 

Methods in org.basex.io with parameters of type StringList
 void Zip.zip(IOFile root, StringList files)
          Zips the specified files.
 

Uses of StringList in org.basex.io.serial
 

Fields in org.basex.io.serial declared as StringList
 StringList SerializerProp.unknown
          Unknown properties.
 

Uses of StringList in org.basex.query
 

Fields in org.basex.query declared as StringList
 StringList QueryContext.dbOptions
          Local options (key/value pairs), set by option declarations.
 StringList QueryInfo.readLocked
          Read locked databases.
 StringList QueryContext.readLocks
          Strings to lock defined by lock:read option.
 StringList QueryInfo.writeLocked
          Write locked databases.
 StringList QueryContext.writeLocks
          Strings to lock defined by lock:write option.
 

Methods in org.basex.query that return StringList
 StringList QuerySuggest.complete()
          Sorts and returns the query suggestions.
 StringList QueryException.suggest()
          Returns suggestions for code suggestions.
 

Methods in org.basex.query with parameters of type StringList
 QueryException QueryException.suggest(InputParser qp, StringList sug)
          Sets code suggestions.
 

Uses of StringList in org.basex.query.up
 

Methods in org.basex.query.up that return StringList
 StringList Updates.databases()
          Adds all databases to be updated to the specified list.
 

Uses of StringList in org.basex.query.util.pkg
 

Methods in org.basex.query.util.pkg that return StringList
 StringList RepoManager.list()
          Returns a list of all packages.
 

Uses of StringList in org.basex.util.ft
 

Methods in org.basex.util.ft that return StringList
static StringList FTLexer.languages()
          Lists all languages for which tokenizers and stemmers are available.
 

Uses of StringList in org.basex.util.list
 

Methods in org.basex.util.list that return StringList
 StringList StringList.add(java.lang.String... elements)
          Adds elements to the array.
 StringList StringList.add(java.lang.String e)
          Adds an element to the array.
 StringList StringList.add(StringList elements)
          Adds elements from a string list to the array.
 StringList StringList.sort(boolean cs)
          Sorts the elements in ascending order.
 StringList StringList.sort(boolean cs, boolean asc)
          Sorts the elements.
 StringList StringList.sort(boolean cs, boolean asc, int index)
          Sorts the elements.
 StringList StringList.unique()
          Removes duplicates from the list.
 

Methods in org.basex.util.list with parameters of type StringList
 StringList StringList.add(StringList elements)
          Adds elements from a string list to the array.
 boolean StringList.containsAll(StringList elements)
          Check if all elements of the specified list are contained in the list.