java.lang.Object
org.apache.jena.fuseki.main.sys.FusekiModules
A collection of Fuseki modules.
There is one specific collection of modules - a system wide set of modules.
This collection defaults to the automatically discovered modules FusekiAutoModules.load()
.
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionasList()
Return an immutable list of modules.boolean
contains
(FusekiModule module) Test whether a code module is registered.static FusekiModules
create
(List<FusekiModule> modules) Create a collection of Fuseki modulesstatic FusekiModules
create
(FusekiModule... modules) Create a collection of Fuseki modulesstatic final FusekiModules
empty()
A Fuseki module with no members.void
forEach
(Consumer<FusekiModule> action) Apply an action to each module, in order, one at a time.static FusekiModules
static void
Restore the original setting of the system default collection.static void
setSystemDefault
(FusekiModules fusekiModules) There is a system wide set of modules used when no other modules are indicated.
-
Method Details
-
setSystemDefault
There is a system wide set of modules used when no other modules are indicated. These default to the automatically discovered modules. -
restoreSystemDefault
public static void restoreSystemDefault()Restore the original setting of the system default collection. -
getSystemModules
-
empty
A Fuseki module with no members. -
create
Create a collection of Fuseki modules -
create
Create a collection of Fuseki modules -
asList
Return an immutable list of modules. -
forEach
Apply an action to each module, in order, one at a time. -
contains
Test whether a code module is registered.
-