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 descriptors
for the specified type.Gets a snapshot of the configureduser format module descriptors
for a specific type from the plugins system.get()
Gets a snapshot of all the configureduser format module descriptors
from the plugins system.Gets theuser format module descriptor
for the specified key.
-
Method Details
-
get
Gets a snapshot of all the configureduser format module descriptors
from the plugins system.- Returns:
- An Iterable of all user format module descriptors.
-
forType
Gets a snapshot of the configureduser format module descriptors
for 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 descriptors
for 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
null
if no default was found.
-
withKey
Gets theuser format module descriptor
for the specified key.- Parameters:
completeKey
- The complete key for the module descriptor to find.- Returns:
- A
user format module descriptor
for the specified key or null if no module descriptor could be found for that key.
-