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