public enum PostProcessStep extends Enum<PostProcessStep>
Enum Constant and Description |
---|
CALCULATE_OFFSETS |
POPULATE_SCOPE |
RECONNECT_DEFINITIONS |
Modifier and Type | Method and Description |
---|---|
static PostProcessStep |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PostProcessStep[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PostProcessStep CALCULATE_OFFSETS
public static final PostProcessStep POPULATE_SCOPE
public static final PostProcessStep RECONNECT_DEFINITIONS
public static PostProcessStep[] values()
for (PostProcessStep c : PostProcessStep.values()) System.out.println(c);
public static PostProcessStep 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 © 2016 The Apache Software Foundation. All rights reserved.