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

package com.hypixel.hytale.protocol;

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

public enum ItemReticleClientEvent
{
    OnHit(0), 
    Wielding(1), 
    OnMovementLeft(2), 
    OnMovementRight(3), 
    OnMovementBack(4);
    
    public static final ItemReticleClientEvent[] VALUES;
    private final int value;
    
    private ItemReticleClientEvent(final int value) {
        this.value = value;
    }
    
    public int getValue() {
        return this.value;
    }
    
    public static ItemReticleClientEvent fromValue(final int value) {
        if (value >= 0 && value < ItemReticleClientEvent.VALUES.length) {
            return ItemReticleClientEvent.VALUES[value];
        }
        throw ProtocolException.invalidEnumValue("ItemReticleClientEvent", value);
    }
    
    static {
        VALUES = values();
    }
}
