Interface UserFormatModuleDescriptors
- All Known Implementing Classes:
DefaultUserFormatModuleDescriptors
public interface UserFormatModuleDescriptors
Represents the enabled user format module descriptors in the plugins system.
- Since:
- v4.4
-
Method Summary
Modifier and TypeMethodDescriptiondefaultFor(String type) Gets the defaultuser format module descriptorsfor the specified type.Gets a snapshot of the configureduser format module descriptorsfor a specific type from the plugins system.get()Gets a snapshot of all the configureduser format module descriptorsfrom the plugins system.Gets theuser format module descriptorfor the specified key.
-
Method Details
-
get
Gets a snapshot of all the configureduser format module descriptorsfrom the plugins system.- Returns:
- An Iterable of all user format module descriptors.
-
forType
Gets a snapshot of the configureduser format module descriptorsfor a specific type from the plugins system.- Parameters:
type- The type of the user format module descriptors to find.- Returns:
- An Iterable of user format module descriptors for the specified type.
-
defaultFor
Gets the defaultuser format module descriptorsfor the specified type.- Parameters:
type- The type to find a default user format descriptor for.- Returns:
- A default user format module descriptor for the specified type or
nullif no default was found.
-
withKey
Gets theuser format module descriptorfor the specified key.- Parameters:
completeKey- The complete key for the module descriptor to find.- Returns:
- A
user format module descriptorfor the specified key or null if no module descriptor could be found for that key.
-