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

package com.hypixel.hytale.protocol;

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

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