package com.cvte.tv.api.aidl;

import android.os.Parcel;
import android.os.Parcelable;

/* JADX INFO: loaded from: classes.dex */
public enum EnumCloseCaptionOpacity implements Parcelable {
    CLOSE_CAPTION_FONT_OPACITY_DEFAULT,
    CLOSE_CAPTION_FONT_OPACITY_SOLID,
    CLOSE_CAPTION_FONT_OPACITY_FLASHING,
    CLOSE_CAPTION_FONT_OPACITY_TRANSLUCENT,
    CLOSE_CAPTION_FONT_OPACITY_TRANSPARENT;

    public static final Parcelable.Creator<EnumCloseCaptionOpacity> CREATOR = new Parcelable.Creator<EnumCloseCaptionOpacity>() { // from class: com.cvte.tv.api.aidl.EnumCloseCaptionOpacity.1
        /* JADX WARN: Can't rename method to resolve collision */
        @Override // android.os.Parcelable.Creator
        public EnumCloseCaptionOpacity createFromParcel(Parcel parcel) {
            return EnumCloseCaptionOpacity.values()[parcel.readInt()];
        }

        /* JADX WARN: Can't rename method to resolve collision */
        @Override // android.os.Parcelable.Creator
        public EnumCloseCaptionOpacity[] newArray(int i2) {
            return new EnumCloseCaptionOpacity[i2];
        }
    };

    @Override // android.os.Parcelable
    public int describeContents() {
        return 0;
    }

    @Override // android.os.Parcelable
    public void writeToParcel(Parcel parcel, int i2) {
        parcel.writeInt(ordinal());
    }
}
