|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<CodeGenStatus>
org.eclipse.emf.mint.CodeGenStatus
public enum CodeGenStatus
Enumeration representing the code generation status of a Java type
member
.
Enum Constant Summary | |
---|---|
GENERATED
Value indicating that the member is generated by EMF (i.e., has @generated in its Javadoc comment). |
|
GENERATED_NOT
Value indicating that the member was originally generated by EMF but was subsequently customized (i.e., has @generated NOT in its Javadoc
comment). |
|
NONE
Value indicating that the member is not generated by EMF. |
Method Summary | |
---|---|
static CodeGenStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static CodeGenStatus[] |
values()
Returns an array containing the constants of this enum type, in the order they're declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final CodeGenStatus NONE
public static final CodeGenStatus GENERATED
@generated
in its Javadoc comment).
public static final CodeGenStatus GENERATED_NOT
@generated NOT
in its Javadoc
comment).
Method Detail |
---|
public static final CodeGenStatus[] values()
for(CodeGenStatus c : CodeGenStatus.values()) System.out.println(c);
public static CodeGenStatus valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
|
Copyright 2008, 2009 Ecliptical Software Inc. and others. All Rights Reserved. |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |