package com.mbridge.msdk.out;
/* loaded from: classes5.dex */
public enum ZoomOutTypeEnum {
    FloatBall(1),
    BigView(4),
    MediumView(3),
    SmallView(2);
    
    private int index;

    public final int getIndex() {
        return this.index;
    }

    ZoomOutTypeEnum(int i) {
        this.index = i;
    }
}
