// 
// Decompiled by Procyon v0.6.0
// 

package io.netty.handler.codec.compression;

import com.aayushatharva.brotli4j.encoder.Encoder;

public enum BrotliMode
{
    GENERIC, 
    TEXT, 
    FONT;
    
    Encoder.Mode adapt() {
        switch (this) {
            case GENERIC: {
                return Encoder.Mode.GENERIC;
            }
            case TEXT: {
                return Encoder.Mode.TEXT;
            }
            case FONT: {
                return Encoder.Mode.FONT;
            }
            default: {
                throw new IllegalStateException("Unsupported enum value: " + this);
            }
        }
    }
}
