public static enum IPreprocessor.Order extends Enum<IPreprocessor.Order>
Enum Constant and Description |
---|
First
Indicates a preprocessor should run before others
|
Last
Indicates a preprocessor should run after others
|
None
Indicates the order is insignificant
|
Modifier and Type | Method and Description |
---|---|
static IPreprocessor.Order |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IPreprocessor.Order[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IPreprocessor.Order First
public static final IPreprocessor.Order Last
public static final IPreprocessor.Order None
public static IPreprocessor.Order[] values()
for (IPreprocessor.Order c : IPreprocessor.Order.values()) System.out.println(c);
public static IPreprocessor.Order 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 © 2024. All rights reserved.