public enum HepMatchOrder extends Enum<HepMatchOrder>
| Enum Constant and Description |
|---|
ARBITRARY
Match in arbitrary order.
|
BOTTOM_UP
Match from leaves up.
|
TOP_DOWN
Match from root down.
|
| Modifier and Type | Method and Description |
|---|---|
static HepMatchOrder |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HepMatchOrder[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HepMatchOrder ARBITRARY
public static final HepMatchOrder BOTTOM_UP
public static final HepMatchOrder TOP_DOWN
public static HepMatchOrder[] values()
for (HepMatchOrder c : HepMatchOrder.values()) System.out.println(c);
public static HepMatchOrder 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 © 2012–2015 The Apache Software Foundation. All rights reserved.