Uses of Class
org.bukkit.entity.memory.MemoryKey
-
Packages that use MemoryKey Package Description org.bukkit More generalized classes in the API.org.bukkit.entity Interfaces for non-voxel objects that can exist in aworld
, including all players, monsters, projectiles, etc.org.bukkit.entity.memory -
-
Uses of MemoryKey in org.bukkit
Fields in org.bukkit with type parameters of type MemoryKey Modifier and Type Field Description static Registry<MemoryKey>
Registry. MEMORY_MODULE_TYPE
Memory Keys. -
Uses of MemoryKey in org.bukkit.entity
Methods in org.bukkit.entity with parameters of type MemoryKey Modifier and Type Method Description <T> T
LivingEntity. getMemory(MemoryKey<T> memoryKey)
Returns the value of the memory specified.<T> void
LivingEntity. setMemory(MemoryKey<T> memoryKey, T memoryValue)
Sets the value of the memory specified. -
Uses of MemoryKey in org.bukkit.entity.memory
Fields in org.bukkit.entity.memory declared as MemoryKey Modifier and Type Field Description static MemoryKey<Location>
MemoryKey. HOME
static MemoryKey<Location>
MemoryKey. JOB_SITE
static MemoryKey<Long>
MemoryKey. LAST_SLEPT
static MemoryKey<Long>
MemoryKey. LAST_WORKED_AT_POI
static MemoryKey<Location>
MemoryKey. MEETING_POINT
Methods in org.bukkit.entity.memory that return MemoryKey Modifier and Type Method Description static MemoryKey
MemoryKey. getByKey(NamespacedKey namespacedKey)
Returns aMemoryKey
by aNamespacedKey
.Methods in org.bukkit.entity.memory that return types with arguments of type MemoryKey Modifier and Type Method Description static Set<MemoryKey>
MemoryKey. values()
Returns the set of all MemoryKeys.
-