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

package com.hypixel.hytale.protocol;

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

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