public interface ARPConfig
-
Method Summary
Modifier and TypeMethodDescriptionThe handlers used during parsing.The options used during parsing.void
setHandlersWith
(ARPHandlers handlers) Copies the handlers from the argument to be used by this instance.void
setOptionsWith
(ARPOptions opts) Copies the options from the argument to be used by this instance.
-
Method Details
-
getHandlers
ARPHandlers getHandlers()The handlers used during parsing. The handlers can be changed by calling this method and then using theset..Handler
methods inARPHandlers
. The handlers can be copied onto another ARP instance using thesetHandlersWith(org.apache.jena.rdfxml.xmlinput1.ARPHandlers)
method.- Returns:
- The handlers used during parsing.
- See Also:
-
setHandlersWith
Copies the handlers from the argument to be used by this instance. To make further modifications it is necessary to callgetHandlers()
to retrieve this instance's copy of the handler information.- Parameters:
handlers
- The new values to use.
-
getOptions
ARPOptions getOptions()The options used during parsing. The options can be changed by calling this method and then using theset..
methods inARPOptions
. The options can be copied onto another ARP instance using thesetOptionsWith(org.apache.jena.rdfxml.xmlinput1.ARPOptions)
method.- Returns:
- The handlers used during parsing.
- See Also:
-
setOptionsWith
Copies the options from the argument to be used by this instance. To make further modifications it is necessary to callgetOptions()
to retrieve this instance's copy of the options.- Parameters:
opts
- The new values to use.
-