Uses of Enum Class
dev.twilite.game.facade.Prayer

Packages that use Prayer
Package
Description
 
  • Uses of Prayer in dev.twilite.game.facade

    Methods in dev.twilite.game.facade that return Prayer
    Modifier and Type
    Method
    Description
    static Prayer
    Prayers.overhead()
    Returns the active overhead prayer, or null when none is active.
    static Prayer
    Prayer.valueOf(String name)
    Returns the enum constant of this class with the specified name.
    static Prayer[]
    Prayer.values()
    Returns an array containing the constants of this enum class, in the order they are declared.
    Methods in dev.twilite.game.facade that return types with arguments of type Prayer
    Modifier and Type
    Method
    Description
    static List<Prayer>
    Prayers.active()
    Returns every currently active prayer.
    static List<Prayer>
    Prayers.all()
    Returns every modern prayer.
    static List<Prayer>
    Prayers.Quick.preset()
    Returns every prayer currently selected in the quick-prayer preset.
    Methods in dev.twilite.game.facade with parameters of type Prayer
    Modifier and Type
    Method
    Description
    static void
    Prayers.activate(Prayer... prayers)
    Activates the supplied prayers.
    static boolean
    Prayers.active(Prayer... prayers)
    Returns whether all supplied prayers are active.
    static void
    Prayers.deactivate(Prayer... prayers)
    Deactivates the supplied prayers.
    static void
    Prayers.flick(Prayer... prayers)
    Deactivates active prayers, then activates the requested prayers in the same tick.
    static boolean
    Prayers.Quick.preset(Prayer... prayers)
    Returns whether all supplied prayers are selected in the quick-prayer preset.
    static void
    Prayers.select(Prayer... prayers)
    Activates any supplied prayers that are not already active.
    static void
    Prayers.Quick.Setup.toggle(boolean on, Prayer prayer)
    Toggles a prayer in the quick-prayer setup interface.
    static void
    Prayers.Quick.Setup.toggle(boolean on, Prayer... prayers)
    Toggles prayers in the quick-prayer setup interface.
    static void
    Prayers.toggle(boolean on, Prayer prayer)
    Toggles a prayer to the requested state.
    static boolean
    Prayers.unlocked(Prayer prayer)
    Returns whether the supplied prayer is unlocked for the local player.
    Method parameters in dev.twilite.game.facade with type arguments of type Prayer
    Modifier and Type
    Method
    Description
    static boolean
    Prayers.active(Collection<Prayer> prayers)
    Returns whether all supplied prayers are active.
    static void
    Prayers.flick(Collection<Prayer> prayers)
    Deactivates active prayers, then activates the requested prayers in the same tick.
    static boolean
    Prayers.Quick.preset(Collection<Prayer> prayers)
    Returns whether all supplied prayers are selected in the quick-prayer preset.
    static void
    Prayers.select(Collection<Prayer> prayers)
    Activates any supplied prayers that are not already active.
    static void
    Prayers.Quick.Setup.toggle(boolean on, Collection<Prayer> prayers)
    Toggles prayers in the quick-prayer setup interface.