|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<Match.Candidacy>
net.xqhs.graphs.matcher.Match.Candidacy
public static enum Match.Candidacy
Possible values for the situations in which two matches can be with regard to merging.
Enum Constant Summary | |
---|---|
IMMEDIATE
The two matches may be merged immediately (using Match.merge(Match, Map, Map, MonitorPack) ) with no
further checks. |
|
NONE
The two matches cannot be merged. |
|
OUTER
The two matches may be merged in the future (appropriate matches containing these two matches may be merged), but not immediately (they have no common vertices). |
Method Summary | |
---|---|
static Match.Candidacy |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static Match.Candidacy[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final Match.Candidacy OUTER
public static final Match.Candidacy IMMEDIATE
Match.merge(Match, Map, Map, MonitorPack)
) with no
further checks. They are merge candidates for each other.
public static final Match.Candidacy NONE
Method Detail |
---|
public static Match.Candidacy[] values()
for (Match.Candidacy c : Match.Candidacy.values()) System.out.println(c);
public static Match.Candidacy valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |