public enum AfterDirectiveProcessingBehaviour extends java.lang.Enum<AfterDirectiveProcessingBehaviour>
Enum Constant and Description |
---|
NOT_PROCESSED
Notify preprocessor that the directive has not been processed
|
PROCESSED
Notify preprocessor that a directive has been processed successfully
|
READ_NEXT_LINE
Notify preprocessor that a directive has been processed and need to read
the next line immediately
|
SHOULD_BE_COMMENTED
Notify preprocessor that the line should be commented
|
Modifier and Type | Method and Description |
---|---|
static AfterDirectiveProcessingBehaviour |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AfterDirectiveProcessingBehaviour[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AfterDirectiveProcessingBehaviour PROCESSED
public static final AfterDirectiveProcessingBehaviour READ_NEXT_LINE
public static final AfterDirectiveProcessingBehaviour NOT_PROCESSED
public static final AfterDirectiveProcessingBehaviour SHOULD_BE_COMMENTED
public static AfterDirectiveProcessingBehaviour[] values()
for (AfterDirectiveProcessingBehaviour c : AfterDirectiveProcessingBehaviour.values()) System.out.println(c);
public static AfterDirectiveProcessingBehaviour 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 null