package U; import android.content.res.ColorStateList; import android.graphics.PorterDuff; import android.widget.CompoundButton; /* loaded from: classes.dex */ public abstract class b { public static ColorStateList a(CompoundButton compoundButton) { return compoundButton.getButtonTintList(); } public static PorterDuff.Mode b(CompoundButton compoundButton) { return compoundButton.getButtonTintMode(); } public static void c(CompoundButton compoundButton, ColorStateList colorStateList) { compoundButton.setButtonTintList(colorStateList); } public static void d(CompoundButton compoundButton, PorterDuff.Mode mode) { compoundButton.setButtonTintMode(mode); } }