All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.bukkit.UnsafeValues Maven / Gradle / Ivy

There is a newer version: 2.4.0
Show newest version
package org.bukkit;

import org.bukkit.inventory.ItemStack;

import java.util.List;

/**
 * This interface provides value conversions that may be specific to a
 * runtime, or have arbitrary meaning (read: magic values).
 * 

* Their existence and behavior is not guaranteed across future versions. They * may be poorly named, throw exceptions, have misleading parameters, or any * other bad programming practice. *

* This interface is unsupported and only for internal use. * * @deprecated Unsupported {@literal &} internal use only */ @Deprecated public interface UnsafeValues { Material getMaterialFromInternalName(String name); List tabCompleteInternalMaterialName(String token, List completions); ItemStack modifyItemStack(ItemStack stack, String arguments); Statistic getStatisticFromInternalName(String name); Achievement getAchievementFromInternalName(String name); List tabCompleteInternalStatisticOrAchievementName(String token, List completions); }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy