package com.ubt.jimu.utils.topsnackbar; import android.view.animation.DecelerateInterpolator; import android.view.animation.Interpolator; import android.view.animation.LinearInterpolator; import androidx.interpolator.view.animation.FastOutLinearInInterpolator; import androidx.interpolator.view.animation.FastOutSlowInInterpolator; import androidx.interpolator.view.animation.LinearOutSlowInInterpolator; /* loaded from: classes2.dex */ public class AnimationUtils { static final Interpolator a; static { new LinearInterpolator(); a = new FastOutSlowInInterpolator(); new FastOutLinearInInterpolator(); new LinearOutSlowInInterpolator(); new DecelerateInterpolator(); } }