public static enum SolutionPattern.ContainmentRelation extends Enum<SolutionPattern.ContainmentRelation>
| Enum Constant and Description |
|---|
ContainedIn
The relationship in which the tuple patterns of one solution are completely contained in a second solution,
which also contains other patterns
|
Contains
The relationship in which one solution contains all of the tuple patterns of a second solution,
in addition to one or more other patterns
|
Disjoint
The relationship in which two solutions have no tuple patterns in common
|
Equal
The relationship in which two solutions contain exactly the same patterns
|
PartialIntersect
The relationship in which two solutions share one or more tuple patterns,
but both solutions contain one or more patterns which are not shared.
|
| Modifier and Type | Method and Description |
|---|---|
static SolutionPattern.ContainmentRelation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SolutionPattern.ContainmentRelation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SolutionPattern.ContainmentRelation Contains
public static final SolutionPattern.ContainmentRelation ContainedIn
public static final SolutionPattern.ContainmentRelation Equal
public static final SolutionPattern.ContainmentRelation PartialIntersect
public static final SolutionPattern.ContainmentRelation Disjoint
public static SolutionPattern.ContainmentRelation[] values()
for (SolutionPattern.ContainmentRelation c : SolutionPattern.ContainmentRelation.values()) System.out.println(c);
public static SolutionPattern.ContainmentRelation 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 © 2016. All Rights Reserved.