Class HeadPluginCompatibility
- java.lang.Object
-
- com.github.crashdemons.playerheads.compatibility.plugins.CompatiblePlugin
-
- com.github.crashdemons.playerheads.compatibility.plugins.HeadPluginCompatibility
-
public class HeadPluginCompatibility extends CompatiblePlugin
Compatibility class providing detection of special-case (configured) custom heads from other plugins. Currently, this only allows detection of blacklisted head names/IDs in plugins.- Author:
- crashdemons (crashenator at gmail.com)
-
-
Field Summary
-
Fields inherited from class com.github.crashdemons.playerheads.compatibility.plugins.CompatiblePlugin
config, parentPlugin
-
-
Constructor Summary
Constructors Constructor Description HeadPluginCompatibility(Plugin parentPlugin)
Constructs the head compatibility objectHeadPluginCompatibility(Plugin parentPlugin, ConfigurationSection config)
Constructs the head compatibility object
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description HeadModificationHandling
getExternalHeadHandling(String ownerName, UUID ownerID)
Gets the acceptable head modifiability of considering the provided name and ID of the head.HeadModificationHandling
getExternalHeadHandling(BlockState state)
Gets the acceptable head modifiability of considering the provided name and ID of the head.HeadModificationHandling
getExternalHeadHandling(ItemStack stack)
Gets the acceptable head modifiability of considering the provided name and ID of the head.void
reloadConfig()
-
-
-
Constructor Detail
-
HeadPluginCompatibility
public HeadPluginCompatibility(Plugin parentPlugin)
Constructs the head compatibility object- Parameters:
parentPlugin
- the plugin requesting compatibility support
-
HeadPluginCompatibility
public HeadPluginCompatibility(Plugin parentPlugin, ConfigurationSection config)
Constructs the head compatibility object- Parameters:
parentPlugin
- the plugin requesting compatibility supportconfig
- the configuration section to use for this class' settings.
-
-
Method Detail
-
reloadConfig
public void reloadConfig()
- Overrides:
reloadConfig
in classCompatiblePlugin
-
getExternalHeadHandling
@NotNull public HeadModificationHandling getExternalHeadHandling(String ownerName, UUID ownerID)
Gets the acceptable head modifiability of considering the provided name and ID of the head. In short, this determines whether the head has been blacklisted (NO_INTERACTION) or not (NORMAL).- Parameters:
ownerName
- the name associated with the headownerID
- the UUID associated with the head- Returns:
- the recommended handling for the head
-
getExternalHeadHandling
@NotNull public HeadModificationHandling getExternalHeadHandling(BlockState state)
Gets the acceptable head modifiability of considering the provided name and ID of the head. In short, this determines whether the head has been blacklisted (NO_INTERACTION) or not (NORMAL).- Parameters:
state
- the blockstate of the head to retrieve username/UUID from.- Returns:
- the recommended handling for the head
-
getExternalHeadHandling
@NotNull public HeadModificationHandling getExternalHeadHandling(ItemStack stack)
Gets the acceptable head modifiability of considering the provided name and ID of the head. In short, this determines whether the head has been blacklisted (NO_INTERACTION) or not (NORMAL).- Parameters:
stack
- the itemstack of the head to retrieve username/UUID from.- Returns:
- the recommended handling for the head
-
-