|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<HepMatchOrder> org.eigenbase.relopt.hep.HepMatchOrder
public enum HepMatchOrder
HepMatchOrder specifies the order of graph traversal when looking for rule matches.
Enum Constant Summary | |
---|---|
ARBITRARY
Match in arbitrary order. |
|
BOTTOM_UP
Match from leaves up. |
|
TOP_DOWN
Match from root down. |
Method Summary | |
---|---|
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're declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final HepMatchOrder ARBITRARY
public static final HepMatchOrder BOTTOM_UP
public static final HepMatchOrder TOP_DOWN
Method Detail |
---|
public static final 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 name
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |