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

package com.hypixel.hytale.protocol.packets.interface_;

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

public enum Page
{
    None(0), 
    Bench(1), 
    Inventory(2), 
    ToolsSettings(3), 
    Map(4), 
    MachinimaEditor(5), 
    ContentCreation(6), 
    Custom(7);
    
    public static final Page[] VALUES;
    private final int value;
    
    private Page(final int value) {
        this.value = value;
    }
    
    public int getValue() {
        return this.value;
    }
    
    public static Page fromValue(final int value) {
        if (value >= 0 && value < Page.VALUES.length) {
            return Page.VALUES[value];
        }
        throw ProtocolException.invalidEnumValue("Page", value);
    }
    
    static {
        VALUES = values();
    }
}
