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

org.telegram.telegrambots.abilitybots.api.toggle.DefaultToggle Maven / Gradle / Ivy

There is a newer version: 7.10.0
Show newest version
package org.telegram.telegrambots.abilitybots.api.toggle;

import org.telegram.telegrambots.abilitybots.api.objects.Ability;

/**
 * If the user does not supply a toggle to their constructor, the default toggle will be instantiated.
 * This default toggle allows all the default abilities to be registered.
 */
public class DefaultToggle implements AbilityToggle {
  @Override
  public boolean isOff(Ability ability) {
    return false;
  }

  @Override
  public Ability processAbility(Ability ab) {
    return ab;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy