public static enum Source.State extends java.lang.Enum<Source.State>
Enum Constant and Description |
---|
COMPILED
Byte code compiled out of the srccode code
|
CREATED
The Source instance has been created
|
DELETED
File deleted
|
ENHANCED
Byte code enhanced by framework
|
ERROR_COMPILE
Tried to compile but there is compile error
|
LOADED
Source code loaded
|
Modifier and Type | Method and Description |
---|---|
static Source.State |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Source.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Source.State CREATED
public static final Source.State LOADED
public static final Source.State COMPILED
public static final Source.State ERROR_COMPILE
public static final Source.State DELETED
public static final Source.State ENHANCED
public static Source.State[] values()
for (Source.State c : Source.State.values()) System.out.println(c);
public static Source.State valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullCopyright © 2014–2017 ActFramework. All rights reserved.