Interface HTIngredientCreator
-
- All Implemented Interfaces:
public interface HTIngredientCreator<TYPE extends Object, INGREDIENT extends HTIngredient<TYPE, ?>>HTIngredientを作成するインターフェースです。
- Since:
0.1.0
Hiiragi Tsubasa
-
-
Method Summary
Modifier and Type Method Description abstract INGREDIENTfrom(TYPE type, Integer amount)abstract INGREDIENTfrom(Collection<TYPE> types, Integer amount)abstract INGREDIENTfromTagKey(TagKey<TYPE> tagKey, Integer amount)abstract INGREDIENTfromTagKeys(Collection<TagKey<TYPE>> tagKeys, Integer amount)-
-
Method Detail
-
from
abstract INGREDIENT from(TYPE type, Integer amount)
-
from
abstract INGREDIENT from(Collection<TYPE> types, Integer amount)
-
fromTagKey
abstract INGREDIENT fromTagKey(TagKey<TYPE> tagKey, Integer amount)
-
fromTagKeys
abstract INGREDIENT fromTagKeys(Collection<TagKey<TYPE>> tagKeys, Integer amount)
-
-
-
-