public enum ExitStatus extends java.lang.Enum<ExitStatus> implements org.eclipse.emf.common.util.Enumerator
Modifier and Type | Field and Description |
---|---|
static int |
ABSTRACTION_ERROR |
static int |
CYCLE |
static int |
INIT_ERROR |
static int |
INTERNAL_ERROR |
static int |
NO_ARGS |
static int |
NO_ERROR |
static int |
NO_FILE |
static int |
OPTION_ERROR |
static int |
PROFILING_ERROR |
static int |
SOLVING_REF_ERROR |
static int |
SYNTAX_ERROR_PARAM |
static int |
SYNTAX_ERROR_PROG |
static int |
TYPE_ERROR |
static java.util.List<ExitStatus> |
VALUES |
Modifier and Type | Method and Description |
---|---|
static ExitStatus |
get(int value) |
static ExitStatus |
get(java.lang.String literal) |
static ExitStatus |
getByName(java.lang.String name) |
java.lang.String |
getLiteral() |
java.lang.String |
getName() |
int |
getValue() |
java.lang.String |
toString()
Returns the literal value of the enumerator, which is its string representation.
|
static ExitStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ExitStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExitStatus NO_ERROR_LITERAL
public static final ExitStatus OPTION_ERROR_LITERAL
public static final ExitStatus NO_ARGS_LITERAL
public static final ExitStatus NO_FILE_LITERAL
public static final ExitStatus INIT_ERROR_LITERAL
public static final ExitStatus SYNTAX_ERROR_PROG_LITERAL
public static final ExitStatus SYNTAX_ERROR_PARAM_LITERAL
public static final ExitStatus SOLVING_REF_ERROR_LITERAL
public static final ExitStatus TYPE_ERROR_LITERAL
public static final ExitStatus CYCLE_LITERAL
public static final ExitStatus PROFILING_ERROR_LITERAL
public static final ExitStatus ABSTRACTION_ERROR_LITERAL
public static final ExitStatus INTERNAL_ERROR_LITERAL
public static final int NO_ERROR
public static final int OPTION_ERROR
public static final int NO_ARGS
public static final int NO_FILE
public static final int INIT_ERROR
public static final int SYNTAX_ERROR_PROG
public static final int SYNTAX_ERROR_PARAM
public static final int SOLVING_REF_ERROR
public static final int TYPE_ERROR
public static final int CYCLE
public static final int PROFILING_ERROR
public static final int ABSTRACTION_ERROR
public static final int INTERNAL_ERROR
public static final java.util.List<ExitStatus> VALUES
public static ExitStatus[] values()
for (ExitStatus c : ExitStatus.values()) System.out.println(c);
public static ExitStatus 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 nullpublic static ExitStatus get(java.lang.String literal)
public static ExitStatus getByName(java.lang.String name)
public static ExitStatus get(int value)
public int getValue()
getValue
in interface org.eclipse.emf.common.util.Enumerator
public java.lang.String getName()
getName
in interface org.eclipse.emf.common.util.Enumerator
public java.lang.String getLiteral()
getLiteral
in interface org.eclipse.emf.common.util.Enumerator
public java.lang.String toString()
toString
in class java.lang.Enum<ExitStatus>