Package org.xmlresolver
Interface ResolverConfiguration
- All Known Implementing Classes:
XMLResolverConfiguration
public interface ResolverConfiguration
Interface for configuring the resolver.
-
Method Summary
Modifier and TypeMethodDescription<T> T
getFeature
(ResolverFeature<T> feature) Gets a feature value.Iterates over all the features known to the particular configuration.<T> void
setFeature
(ResolverFeature<T> feature, T value) Sets a feature value.
-
Method Details
-
setFeature
Sets a feature value.- Type Parameters:
T
- The type of the new value which varies according to the feature.- Parameters:
feature
- The feature.value
- The new value.
-
getFeature
Gets a feature value.- Type Parameters:
T
- The type of the new value which varies according to the feature.- Parameters:
feature
- The feature.- Returns:
- The current value of that feature.
-
getFeatures
Iterator<ResolverFeature<?>> getFeatures()Iterates over all the features known to the particular configuration.- Returns:
- An iterator over all known features.
-