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

package com.hypixel.hytale.protocol;

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

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