public enum PreprocessingFlag extends Enum<PreprocessingFlag>
Enum Constant and Description |
---|
ABORT_PROCESSING
This flag allows to stop preprocessing immediately
|
BREAK_COMMAND
This flag shows that //#break has been met
|
COMMENT_NEXT_LINE
This flag shows that we must comment the next line (one time flag)
|
END_PROCESSING
This flag shows that preprocessing must be ended on the next string
|
IF_CONDITION_FALSE
This flag shows that the current //#if construction in the passive state
|
TEXT_OUTPUT_DISABLED
This flag shows that it is allowed to print texts into an output stream
|
Modifier and Type | Method and Description |
---|---|
static PreprocessingFlag |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PreprocessingFlag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PreprocessingFlag TEXT_OUTPUT_DISABLED
public static final PreprocessingFlag COMMENT_NEXT_LINE
public static final PreprocessingFlag IF_CONDITION_FALSE
public static final PreprocessingFlag BREAK_COMMAND
public static final PreprocessingFlag END_PROCESSING
public static final PreprocessingFlag ABORT_PROCESSING
public static PreprocessingFlag[] values()
for (PreprocessingFlag c : PreprocessingFlag.values()) System.out.println(c);
public static PreprocessingFlag 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 © 2011–2021 Igor Maznitsa. All rights reserved.