Package me.hsgamer.bettergui.util
Class SchedulerUtil
- java.lang.Object
-
- me.hsgamer.bettergui.util.SchedulerUtil
-
public class SchedulerUtil extends Object
The utility class for the scheduler
-
-
Constructor Summary
Constructors Constructor Description SchedulerUtil()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AsyncScheduler
async()
Get the async schedulerstatic EntityScheduler
entity(org.bukkit.entity.Entity entity)
Get the entity schedulerstatic GlobalScheduler
global()
Get the global scheduler
-
-
-
Method Detail
-
global
public static GlobalScheduler global()
Get the global scheduler- Returns:
- the global scheduler
-
async
public static AsyncScheduler async()
Get the async scheduler- Returns:
- the async scheduler
-
entity
public static EntityScheduler entity(org.bukkit.entity.Entity entity)
Get the entity scheduler- Parameters:
entity
- the entity- Returns:
- the entity scheduler
-
-