public static enum DataModelerContext.ParseStatus extends Enum<DataModelerContext.ParseStatus>
| Enum Constant and Description |
|---|
NOT_PARSED
The source is not parsed.
|
PARSE_ERRORS
There have been parsing errors in the last parse try. e.g when the file was loaded at editor opening time, or
when the user tried to switch from the "source tab" to the "editor tab".
|
PARSED
The source has been parsed without errors, so we basically have the model built to be shown in the editor tab.
|
| Modifier and Type | Method and Description |
|---|---|
static DataModelerContext.ParseStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DataModelerContext.ParseStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataModelerContext.ParseStatus PARSED
public static final DataModelerContext.ParseStatus NOT_PARSED
public static final DataModelerContext.ParseStatus PARSE_ERRORS
public static DataModelerContext.ParseStatus[] values()
for (DataModelerContext.ParseStatus c : DataModelerContext.ParseStatus.values()) System.out.println(c);
public static DataModelerContext.ParseStatus valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2001–2021 JBoss by Red Hat. All rights reserved.