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

package com.hypixel.hytale.protocol;

import com.hypixel.hytale.protocol.io.ProtocolException;

public enum ModifierTarget
{
    Min(0), 
    Max(1);
    
    public static final ModifierTarget[] VALUES;
    private final int value;
    
    private ModifierTarget(final int value) {
        this.value = value;
    }
    
    public int getValue() {
        return this.value;
    }
    
    public static ModifierTarget fromValue(final int value) {
        if (value >= 0 && value < ModifierTarget.VALUES.length) {
            return ModifierTarget.VALUES[value];
        }
        throw ProtocolException.invalidEnumValue("ModifierTarget", value);
    }
    
    static {
        VALUES = values();
    }
}
