public enum WalkFlow extends Enum<WalkFlow>
Modifier and Type | Method and Description |
---|---|
String |
getDescription() |
String |
getName() |
static WalkFlow |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WalkFlow[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WalkFlow SKIP
public static final WalkFlow ABORT
public static final WalkFlow CONTINUE
public static WalkFlow[] values()
for (WalkFlow c : WalkFlow.values()) System.out.println(c);
public static WalkFlow 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 nullpublic String getName()
public String getDescription()
Copyright © 2021. All rights reserved.