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

package com.hypixel.hytale.protocol;

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

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