Package com.github.syari.spigot.api.config.type.data

Types

ConfigBooleanDataType
Link copied to clipboard
object ConfigBooleanDataType : ConfigDataType<Boolean>
真偽型。
ConfigCoordinateDataType
Link copied to clipboard
object ConfigCoordinateDataType : ConfigDataType<Coordinate>
座標。X, Y, Z, Yaw, Pitch の値を持つ。
ConfigDateDataType
Link copied to clipboard
object ConfigDateDataType : ConfigDataType<Date>
日付型。
ConfigDoubleDataType
Link copied to clipboard
object ConfigDoubleDataType : ConfigDataType<Double>
ConfigDataType.Float よりも精度の高い浮動小数型。
ConfigEnchantmentByKeyDataType
Link copied to clipboard
object ConfigEnchantmentByKeyDataType : ConfigDataType<Enchantment>
エンチャント。固有名から取得する。
ConfigEnchantmentByNameDataType
Link copied to clipboard
object ConfigEnchantmentByNameDataType : ConfigDataType<Enchantment>
エンチャント。名前から取得する。
ConfigEntityTypeDataType
Link copied to clipboard
object ConfigEntityTypeDataType : ConfigEnumDataType<EntityType>
エンティティの種類。
ConfigEnumDataType
Link copied to clipboard
interface ConfigEnumDataType<T : Enum<*>> : ConfigDataType<T>
列挙型の要素からデータタイプを作成する為のインターフェース。
ConfigFloatDataType
Link copied to clipboard
object ConfigFloatDataType : ConfigDataType<Float>
浮動小数型。
ConfigIntDataType
Link copied to clipboard
object ConfigIntDataType : ConfigDataType<Int>
整数型。
ConfigInventoryDataType
Link copied to clipboard
class ConfigInventoryDataType(itemConverter: ConfigItemConverter) : ConfigDataType<Map<Int, ItemStack>>
インベントリ。ConfigItemConverter を使用して保存・読込を行う。
ConfigItemStackDataType
Link copied to clipboard
class ConfigItemStackDataType(itemConverter: ConfigItemConverter) : ConfigDataType<ItemStack>
アイテムスタック。ConfigItemConverter を使用して保存・読込を行う。
ConfigLocationDataType
Link copied to clipboard
object ConfigLocationDataType : ConfigDataType<Location>
ワールド座標。World, X, Y, Z, Yaw, Pitch の値を持つ。
ConfigLongDataType
Link copied to clipboard
object ConfigLongDataType : ConfigDataType<Long>
ConfigDataType.Int より大きい整数型。
ConfigMaterialDataType
Link copied to clipboard
object ConfigMaterialDataType : ConfigEnumDataType<Material>
マテリアル。
ConfigNumberDataType
Link copied to clipboard
object ConfigNumberDataType : ConfigDataType<Number>
数字。別の数字型に変換して使う。
ConfigParticleDataType
Link copied to clipboard
object ConfigParticleDataType : ConfigEnumDataType<Particle>
パーティクルの種類。
ConfigPotionEffectTypeDataType
Link copied to clipboard
object ConfigPotionEffectTypeDataType : ConfigDataType<PotionEffectType>
ポーションエフェクトの種類。
ConfigSerializableInventoryDataType
Link copied to clipboard
object ConfigSerializableInventoryDataType : ConfigDataType<Array<ItemStack?>>
インベントリ。シリアライズを使用して保存・読込を行う。
ConfigSerializableItemStackDataType
Link copied to clipboard
object ConfigSerializableItemStackDataType : ConfigDataType<ItemStack>
アイテムスタック。シリアライズを使用して保存・読込を行う。
ConfigSoundByKeyDataType
Link copied to clipboard
object ConfigSoundByKeyDataType : ConfigEnumDataType<Sound>
サウンドの種類。固有名から取得する。
ConfigSoundByNameDataType
Link copied to clipboard
object ConfigSoundByNameDataType : ConfigEnumDataType<Sound>
サウンドの種類。名前から取得する。
ConfigStringDataType
Link copied to clipboard
object ConfigStringDataType : ConfigDataType<String>
文字列型。
ConfigUUIDDataType
Link copied to clipboard
object ConfigUUIDDataType : ConfigDataType<UUID>
UUID。
ConfigVectorDataType
Link copied to clipboard
object ConfigVectorDataType : ConfigDataType<Vector>
ベクトル。X, Y, Z の値を持つ。
ConfigWorldDataType
Link copied to clipboard
object ConfigWorldDataType : ConfigDataType<World>
ワールド。