Interface MultiBlockInteractionHandler
- All Superinterfaces:
ItemHandler
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
This
ItemHandler is called whenever a Player interacts with
this MultiBlock.
Note that this MultiBlockInteractionHandler should be assigned to
a class that inherits from MultiBlockMachine.- Author:
- TheBusyBiscuit
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptiondefault Class<? extends ItemHandler>This method returns the identifier for thisItemHandler.booleanonInteract(Player p, MultiBlock mb, Block b) default Optional<IncompatibleItemHandlerException>validate(SlimefunItem item) This method is used to check whether a givenSlimefunItemis compatible with thisItemHandler, it will return anIncompatibleItemHandlerExceptionif the items are not compatible.
-
Method Details
-
onInteract
-
validate
Description copied from interface:ItemHandlerThis method is used to check whether a givenSlimefunItemis compatible with thisItemHandler, it will return anIncompatibleItemHandlerExceptionif the items are not compatible.- Specified by:
validatein interfaceItemHandler- Parameters:
item- TheSlimefunItemto validate- Returns:
- An
Optionaldescribing the result, it will contain anIncompatibleItemHandlerExceptionshould there be an issue
-
getIdentifier
Description copied from interface:ItemHandlerThis method returns the identifier for thisItemHandler. We use aClassidentifier to group Item Handlers together.- Specified by:
getIdentifierin interfaceItemHandler- Returns:
- The
Classidentifier for thisItemHandler
-