Class CustomMob

java.lang.Object
dev.lone.itemsadder.api.CustomMob

public class CustomMob extends Object
Class representing a custom mob in ItemsAdder
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    static @Nullable CustomMob
    byAlreadySpawned(org.bukkit.entity.Entity entity)
    Gets a CustomMob instance through a Bukkit Entity.
    org.bukkit.entity.Entity
    Gets the Bukkit Entity associated with this CustomMob.
    Gets the ID of this CustomMob.
    Gets the name of this CustomMob.
    Gets the Namespace for this CustomMob.
    Gets the Namespace and ID in the format namespace:id for this CustomMob.
    org.bukkit.entity.EntityType
    Gets the Bukkit EntityType associated with this CustomMob.
    static @Nullable CustomMob
    spawn(String namespacedId, org.bukkit.Location location)
    Spawns a CustomMob and returns the created CustomMob instance, or null if Namespace and ID are invalid.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • CustomMob

      public CustomMob()
  • Method Details

    • spawn

      @Nullable public static @Nullable CustomMob spawn(String namespacedId, org.bukkit.Location location)
      Spawns a CustomMob and returns the created CustomMob instance, or null if Namespace and ID are invalid.
      Parameters:
      namespacedId - Namespace and ID in the format namespace:id to get the CustomMob from.
      location - the Location to spawn the CustomMob at.
      Returns:
      Possibly-null CustomMob instance.
    • byAlreadySpawned

      @Nullable public static @Nullable CustomMob byAlreadySpawned(org.bukkit.entity.Entity entity)
      Gets a CustomMob instance through a Bukkit Entity.
      This returns null if the provided Entity doesn't belong to a CustomMob. // TODO: Check if that is correct
      Parameters:
      entity - The Bukkit Entity to get the CustomMob from.
      Returns:
      Possibly-null CustomMob instance.
    • getEntity

      public org.bukkit.entity.Entity getEntity()
      Gets the Bukkit Entity associated with this CustomMob.
      Returns:
      The Bukkit Entity associated with the CustomMob.
    • getType

      public org.bukkit.entity.EntityType getType()
      Gets the Bukkit EntityType associated with this CustomMob.
      Returns:
      The Bukkit EntityType associated with the CustomMob.
    • getNamespacedID

      public String getNamespacedID()
      Gets the Namespace and ID in the format namespace:id for this CustomMob.
      Returns:
      String representing the namespace and ID of the CustomMob.
    • getNamespace

      public String getNamespace()
      Gets the Namespace for this CustomMob.
      Returns:
      String representing the namespace of the CustomMob.
    • getName

      public String getName()
      Gets the name of this CustomMob.
      Returns:
      String representing the name of the CustomMob.
    • getId

      public String getId()
      Gets the ID of this CustomMob.
      Returns:
      String representing the ID of the CustomMob.