SquirrelJME/SquirrelJME

View on GitHub
modules/cldc/src/main/java/java/nio/file/LinkOption.java

Summary

Maintainability
A
0 mins
Test Coverage
// -*- Mode: Java; indent-tabs-mode: t; tab-width: 4 -*-
// ---------------------------------------------------------------------------
// SquirrelJME
//     Copyright (C) Stephanie Gawroriski <xer@multiphasicapps.net>
// ---------------------------------------------------------------------------
// SquirrelJME is under the Mozilla Public License Version 2.0.
// See license.mkd for licensing and copyright information.
// ---------------------------------------------------------------------------

package java.nio.file;

import cc.squirreljme.runtime.cldc.annotation.Api;
import cc.squirreljme.runtime.cldc.debug.Debugging;

@Api
public enum LinkOption
    implements OpenOption, CopyOption
{
    @Api
    NOFOLLOW_LINKS(),
    
    /** End. */
    ;
    
    LinkOption()
    {
        throw Debugging.todo();
    }
}