Uses of Interface
org.bukkit.configuration.serialization.ConfigurationSerializable
Package | Description |
---|---|
org.bukkit |
More generalized classes in the API.
|
org.bukkit.block.banner | |
org.bukkit.configuration.serialization |
Classes dedicated to being able to perform serialization specialized for
the Bukkit
configuration
implementation. |
org.bukkit.entity |
Interfaces for non-voxel objects that can exist in a
world , including all players, monsters, projectiles, etc. |
org.bukkit.inventory |
Classes involved in manipulating player inventories and item interactions.
|
org.bukkit.inventory.meta |
The interfaces used when manipulating extra data can can be stored inside
item stacks . |
org.bukkit.potion |
Classes to represent various
potion
properties and manipulation. |
org.bukkit.util |
Multi and single purpose classes to facilitate various programmatic
concepts.
|
-
Uses of ConfigurationSerializable in org.bukkit
Subinterfaces of ConfigurationSerializable in org.bukkit Modifier and Type Interface Description interface
OfflinePlayer
Classes in org.bukkit that implement ConfigurationSerializable Modifier and Type Class Description class
Color
A container for a color palette.class
FireworkEffect
Represents a single firework effect.class
Location
Represents a 3-dimensional position in a worldMethods in org.bukkit that return ConfigurationSerializable Modifier and Type Method Description static ConfigurationSerializable
FireworkEffect. deserialize(java.util.Map<java.lang.String,java.lang.Object> map)
-
Uses of ConfigurationSerializable in org.bukkit.block.banner
Classes in org.bukkit.block.banner that implement ConfigurationSerializable Modifier and Type Class Description class
Pattern
-
Uses of ConfigurationSerializable in org.bukkit.configuration.serialization
Methods in org.bukkit.configuration.serialization that return ConfigurationSerializable Modifier and Type Method Description ConfigurationSerializable
ConfigurationSerialization. deserialize(java.util.Map<java.lang.String,?> args)
static ConfigurationSerializable
ConfigurationSerialization. deserializeObject(java.util.Map<java.lang.String,?> args)
Attempts to deserialize the given arguments into a new instance of the given class.static ConfigurationSerializable
ConfigurationSerialization. deserializeObject(java.util.Map<java.lang.String,?> args, java.lang.Class<? extends ConfigurationSerializable> clazz)
Attempts to deserialize the given arguments into a new instance of the given class.protected ConfigurationSerializable
ConfigurationSerialization. deserializeViaCtor(java.lang.reflect.Constructor<? extends ConfigurationSerializable> ctor, java.util.Map<java.lang.String,?> args)
protected ConfigurationSerializable
ConfigurationSerialization. deserializeViaMethod(java.lang.reflect.Method method, java.util.Map<java.lang.String,?> args)
Methods in org.bukkit.configuration.serialization that return types with arguments of type ConfigurationSerializable Modifier and Type Method Description static java.lang.Class<? extends ConfigurationSerializable>
ConfigurationSerialization. getClassByAlias(java.lang.String alias)
Attempts to get a registeredConfigurationSerializable
class by its aliasprotected java.lang.reflect.Constructor<? extends ConfigurationSerializable>
ConfigurationSerialization. getConstructor()
java.lang.Class<? extends ConfigurationSerializable>
value()
Which class should be used as a delegate for this classes deserializationMethod parameters in org.bukkit.configuration.serialization with type arguments of type ConfigurationSerializable Modifier and Type Method Description static ConfigurationSerializable
ConfigurationSerialization. deserializeObject(java.util.Map<java.lang.String,?> args, java.lang.Class<? extends ConfigurationSerializable> clazz)
Attempts to deserialize the given arguments into a new instance of the given class.protected ConfigurationSerializable
ConfigurationSerialization. deserializeViaCtor(java.lang.reflect.Constructor<? extends ConfigurationSerializable> ctor, java.util.Map<java.lang.String,?> args)
static java.lang.String
ConfigurationSerialization. getAlias(java.lang.Class<? extends ConfigurationSerializable> clazz)
Gets the correct alias for the givenConfigurationSerializable
classstatic void
ConfigurationSerialization. registerClass(java.lang.Class<? extends ConfigurationSerializable> clazz)
Registers the givenConfigurationSerializable
class by its aliasstatic void
ConfigurationSerialization. registerClass(java.lang.Class<? extends ConfigurationSerializable> clazz, java.lang.String alias)
Registers the given alias to the specifiedConfigurationSerializable
classstatic void
ConfigurationSerialization. unregisterClass(java.lang.Class<? extends ConfigurationSerializable> clazz)
Unregisters any aliases for the specifiedConfigurationSerializable
classConstructor parameters in org.bukkit.configuration.serialization with type arguments of type ConfigurationSerializable Constructor Description ConfigurationSerialization(java.lang.Class<? extends ConfigurationSerializable> clazz)
-
Uses of ConfigurationSerializable in org.bukkit.entity
Subinterfaces of ConfigurationSerializable in org.bukkit.entity Modifier and Type Interface Description interface
Player
Represents a player, connected or not -
Uses of ConfigurationSerializable in org.bukkit.inventory
Classes in org.bukkit.inventory that implement ConfigurationSerializable Modifier and Type Class Description class
ItemStack
Represents a stack of items -
Uses of ConfigurationSerializable in org.bukkit.inventory.meta
Subinterfaces of ConfigurationSerializable in org.bukkit.inventory.meta Modifier and Type Interface Description interface
BannerMeta
interface
BlockStateMeta
interface
BookMeta
Represents a book (Material.BOOK_AND_QUILL
orMaterial.WRITTEN_BOOK
) that can have a title, an author, and pages.interface
EnchantmentStorageMeta
EnchantmentMeta is specific to items that can store enchantments, as opposed to being enchanted.interface
FireworkEffectMeta
Represents a meta that can store a single FireworkEffect.interface
FireworkMeta
Represents aMaterial.FIREWORK
and its effects.interface
ItemMeta
This type represents the storage mechanism for auxiliary item data.interface
LeatherArmorMeta
Represents leather armor (Material.LEATHER_BOOTS
,Material.LEATHER_CHESTPLATE
,Material.LEATHER_HELMET
, orMaterial.LEATHER_LEGGINGS
) that can be colored.interface
MapMeta
Represents a map that can be scalable.interface
PotionMeta
Represents a potion (Material.POTION
) that can have custom effects.interface
SkullMeta
Represents a skull (Material.SKULL_ITEM
) that can have an owner. -
Uses of ConfigurationSerializable in org.bukkit.potion
Classes in org.bukkit.potion that implement ConfigurationSerializable Modifier and Type Class Description class
PotionEffect
Represents a potion effect, that can be added to aLivingEntity
. -
Uses of ConfigurationSerializable in org.bukkit.util
Classes in org.bukkit.util that implement ConfigurationSerializable Modifier and Type Class Description class
BlockVector
A vector with a hash function that floors the X, Y, Z components, a la BlockVector in WorldEdit.class
Vector
Represents a mutable vector.