
org.sdmlib.models.objects.util.GenericLinkPO Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of SDMLib Show documentation
Show all versions of SDMLib Show documentation
SDMLib is a light weight modeling library. SDMLib intentionally comes without any tool or editor.
package org.sdmlib.models.objects.util;
import org.sdmlib.models.objects.GenericGraph;
import org.sdmlib.models.objects.GenericLink;
import org.sdmlib.models.objects.GenericObject;
import org.sdmlib.models.pattern.AttributeConstraint;
import org.sdmlib.models.pattern.LinkConstraint;
import org.sdmlib.models.pattern.Pattern;
import org.sdmlib.models.pattern.PatternObject;
public class GenericLinkPO extends PatternObject
{
public GenericLinkPO(){
newInstance(CreatorCreator.createIdMap("PatternObjectType"));
}
public GenericLinkPO(GenericLink... hostGraphObject) {
if(hostGraphObject==null || hostGraphObject.length<1){
return;
}
newInstance(CreatorCreator.createIdMap("PatternObjectType"), hostGraphObject);
}
public GenericLinkPO hasTgtLabel(String value)
{
new AttributeConstraint()
.withAttrName(GenericLink.PROPERTY_TGTLABEL)
.withTgtValue(value)
.withSrc(this)
.withModifier(this.getPattern().getModifier())
.withPattern(this.getPattern());
this.getPattern().findMatch();
return this;
}
public String getTgtLabel()
{
if (this.getPattern().getHasMatch())
{
return ((GenericLink) getCurrentMatch()).getTgtLabel();
}
return null;
}
public GenericLinkPO hasSrcLabel(String value)
{
new AttributeConstraint()
.withAttrName(GenericLink.PROPERTY_SRCLABEL)
.withTgtValue(value)
.withSrc(this)
.withModifier(this.getPattern().getModifier())
.withPattern(this.getPattern());
this.getPattern().findMatch();
return this;
}
public String getSrcLabel()
{
if (this.getPattern().getHasMatch())
{
return ((GenericLink) getCurrentMatch()).getSrcLabel();
}
return null;
}
public GenericObjectPO hasSrc()
{
GenericObjectPO result = new GenericObjectPO();
result.setModifier(this.getPattern().getModifier());
super.hasLink(GenericLink.PROPERTY_SRC, result);
return result; }
public GenericLinkPO hasSrc(GenericObjectPO tgt)
{
LinkConstraint patternLink = (LinkConstraint) new LinkConstraint()
.withTgt(tgt).withTgtRoleName(GenericLink.PROPERTY_SRC)
.withSrc(this)
.withModifier(this.getPattern().getModifier());
this.getPattern().addToElements(patternLink);
this.getPattern().findMatch();
return this;
}
public GenericObject getSrc()
{
if (this.getPattern().getHasMatch())
{
return ((GenericLink) this.getCurrentMatch()).getSrc();
}
return null;
}
public GenericObjectPO hasTgt()
{
GenericObjectPO result = new GenericObjectPO();
result.setModifier(this.getPattern().getModifier());
super.hasLink(GenericLink.PROPERTY_TGT, result);
return result; }
public GenericLinkPO hasTgt(GenericObjectPO tgt)
{
LinkConstraint patternLink = (LinkConstraint) new LinkConstraint()
.withTgt(tgt).withTgtRoleName(GenericLink.PROPERTY_TGT)
.withSrc(this)
.withModifier(this.getPattern().getModifier());
this.getPattern().addToElements(patternLink);
this.getPattern().findMatch();
return this;
}
public GenericObject getTgt()
{
if (this.getPattern().getHasMatch())
{
return ((GenericLink) this.getCurrentMatch()).getTgt();
}
return null;
}
public GenericGraphPO hasGraph()
{
GenericGraphPO result = new GenericGraphPO();
result.setModifier(this.getPattern().getModifier());
super.hasLink(GenericLink.PROPERTY_GRAPH, result);
return result;
}
public GenericLinkPO hasGraph(GenericGraphPO tgt)
{
LinkConstraint patternLink = (LinkConstraint) new LinkConstraint()
.withTgt(tgt).withTgtRoleName(GenericLink.PROPERTY_GRAPH)
.withSrc(this)
.withModifier(this.getPattern().getModifier());
this.getPattern().addToElements(patternLink);
this.getPattern().findMatch();
return this;
}
public GenericGraph getGraph()
{
if (this.getPattern().getHasMatch())
{
return ((GenericLink) this.getCurrentMatch()).getGraph();
}
return null;
}
public GenericLinkSet allMatches()
{
this.setDoAllMatches(true);
GenericLinkSet result = new GenericLinkSet();
while (this.getPattern().getHasMatch())
{
result.add(this.getCurrentMatch());
this.getPattern().findNextMatch();
}
return result;
}
public GenericLinkPO hasTgtLabel(String lower, String upper)
{
new AttributeConstraint()
.withAttrName(GenericLink.PROPERTY_TGTLABEL)
.withTgtValue(lower)
.withUpperTgtValue(upper)
.withSrc(this)
.withModifier(this.getPattern().getModifier())
.withPattern(this.getPattern());
this.getPattern().findMatch();
return this;
}
public GenericLinkPO hasSrcLabel(String lower, String upper)
{
new AttributeConstraint()
.withAttrName(GenericLink.PROPERTY_SRCLABEL)
.withTgtValue(lower)
.withUpperTgtValue(upper)
.withSrc(this)
.withModifier(this.getPattern().getModifier())
.withPattern(this.getPattern());
this.getPattern().findMatch();
return this;
}
public GenericLinkPO createTgtLabel(String value)
{
this.startCreate().hasTgtLabel(value).endCreate();
return this;
}
public GenericLinkPO createSrcLabel(String value)
{
this.startCreate().hasSrcLabel(value).endCreate();
return this;
}
public GenericObjectPO createSrc()
{
return this.startCreate().hasSrc().endCreate();
}
public GenericLinkPO createSrc(GenericObjectPO tgt)
{
return this.startCreate().hasSrc(tgt).endCreate();
}
public GenericObjectPO createTgt()
{
return this.startCreate().hasTgt().endCreate();
}
public GenericLinkPO createTgt(GenericObjectPO tgt)
{
return this.startCreate().hasTgt(tgt).endCreate();
}
public GenericGraphPO createGraph()
{
return this.startCreate().hasGraph().endCreate();
}
public GenericLinkPO createGraph(GenericGraphPO tgt)
{
return this.startCreate().hasGraph(tgt).endCreate();
}
public GenericLinkPO filterTgtLabel(String value)
{
new AttributeConstraint()
.withAttrName(GenericLink.PROPERTY_TGTLABEL)
.withTgtValue(value)
.withSrc(this)
.withModifier(this.getPattern().getModifier())
.withPattern(this.getPattern());
super.filterAttr();
return this;
}
public GenericLinkPO filterTgtLabel(String lower, String upper)
{
new AttributeConstraint()
.withAttrName(GenericLink.PROPERTY_TGTLABEL)
.withTgtValue(lower)
.withUpperTgtValue(upper)
.withSrc(this)
.withModifier(this.getPattern().getModifier())
.withPattern(this.getPattern());
super.filterAttr();
return this;
}
public GenericLinkPO filterSrcLabel(String value)
{
new AttributeConstraint()
.withAttrName(GenericLink.PROPERTY_SRCLABEL)
.withTgtValue(value)
.withSrc(this)
.withModifier(this.getPattern().getModifier())
.withPattern(this.getPattern());
super.filterAttr();
return this;
}
public GenericLinkPO filterSrcLabel(String lower, String upper)
{
new AttributeConstraint()
.withAttrName(GenericLink.PROPERTY_SRCLABEL)
.withTgtValue(lower)
.withUpperTgtValue(upper)
.withSrc(this)
.withModifier(this.getPattern().getModifier())
.withPattern(this.getPattern());
super.filterAttr();
return this;
}
public GenericObjectPO filterSrc()
{
GenericObjectPO result = new GenericObjectPO(new GenericObject[]{});
result.setModifier(this.getPattern().getModifier());
super.hasLink(GenericLink.PROPERTY_SRC, result);
return result;
}
public GenericLinkPO filterSrc(GenericObjectPO tgt)
{
return hasLinkConstraint(tgt, GenericLink.PROPERTY_SRC);
}
public GenericObjectPO filterTgt()
{
GenericObjectPO result = new GenericObjectPO(new GenericObject[]{});
result.setModifier(this.getPattern().getModifier());
super.hasLink(GenericLink.PROPERTY_TGT, result);
return result;
}
public GenericLinkPO filterTgt(GenericObjectPO tgt)
{
return hasLinkConstraint(tgt, GenericLink.PROPERTY_TGT);
}
public GenericGraphPO filterGraph()
{
GenericGraphPO result = new GenericGraphPO(new GenericGraph[]{});
result.setModifier(this.getPattern().getModifier());
super.hasLink(GenericLink.PROPERTY_GRAPH, result);
return result;
}
public GenericLinkPO filterGraph(GenericGraphPO tgt)
{
return hasLinkConstraint(tgt, GenericLink.PROPERTY_GRAPH);
}
public GenericLinkPO(String modifier)
{
this.setModifier(modifier);
}
public GenericLinkPO createTgtLabelCondition(String value)
{
new AttributeConstraint()
.withAttrName(GenericLink.PROPERTY_TGTLABEL)
.withTgtValue(value)
.withSrc(this)
.withModifier(this.getPattern().getModifier())
.withPattern(this.getPattern());
super.filterAttr();
return this;
}
public GenericLinkPO createTgtLabelCondition(String lower, String upper)
{
new AttributeConstraint()
.withAttrName(GenericLink.PROPERTY_TGTLABEL)
.withTgtValue(lower)
.withUpperTgtValue(upper)
.withSrc(this)
.withModifier(this.getPattern().getModifier())
.withPattern(this.getPattern());
super.filterAttr();
return this;
}
public GenericLinkPO createTgtLabelAssignment(String value)
{
new AttributeConstraint()
.withAttrName(GenericLink.PROPERTY_TGTLABEL)
.withTgtValue(value)
.withSrc(this)
.withModifier(Pattern.CREATE)
.withPattern(this.getPattern());
super.filterAttr();
return this;
}
public GenericLinkPO createSrcLabelCondition(String value)
{
new AttributeConstraint()
.withAttrName(GenericLink.PROPERTY_SRCLABEL)
.withTgtValue(value)
.withSrc(this)
.withModifier(this.getPattern().getModifier())
.withPattern(this.getPattern());
super.filterAttr();
return this;
}
public GenericLinkPO createSrcLabelCondition(String lower, String upper)
{
new AttributeConstraint()
.withAttrName(GenericLink.PROPERTY_SRCLABEL)
.withTgtValue(lower)
.withUpperTgtValue(upper)
.withSrc(this)
.withModifier(this.getPattern().getModifier())
.withPattern(this.getPattern());
super.filterAttr();
return this;
}
public GenericLinkPO createSrcLabelAssignment(String value)
{
new AttributeConstraint()
.withAttrName(GenericLink.PROPERTY_SRCLABEL)
.withTgtValue(value)
.withSrc(this)
.withModifier(Pattern.CREATE)
.withPattern(this.getPattern());
super.filterAttr();
return this;
}
public GenericGraphPO createGraphPO()
{
GenericGraphPO result = new GenericGraphPO(new GenericGraph[]{});
result.setModifier(this.getPattern().getModifier());
super.hasLink(GenericLink.PROPERTY_GRAPH, result);
return result;
}
public GenericGraphPO createGraphPO(String modifier)
{
GenericGraphPO result = new GenericGraphPO(new GenericGraph[]{});
result.setModifier(modifier);
super.hasLink(GenericLink.PROPERTY_GRAPH, result);
return result;
}
public GenericLinkPO createGraphLink(GenericGraphPO tgt)
{
return hasLinkConstraint(tgt, GenericLink.PROPERTY_GRAPH);
}
public GenericLinkPO createGraphLink(GenericGraphPO tgt, String modifier)
{
return hasLinkConstraint(tgt, GenericLink.PROPERTY_GRAPH, modifier);
}
public GenericObjectPO createSrcPO()
{
GenericObjectPO result = new GenericObjectPO(new GenericObject[]{});
result.setModifier(this.getPattern().getModifier());
super.hasLink(GenericLink.PROPERTY_SRC, result);
return result;
}
public GenericObjectPO createSrcPO(String modifier)
{
GenericObjectPO result = new GenericObjectPO(new GenericObject[]{});
result.setModifier(modifier);
super.hasLink(GenericLink.PROPERTY_SRC, result);
return result;
}
public GenericLinkPO createSrcLink(GenericObjectPO tgt)
{
return hasLinkConstraint(tgt, GenericLink.PROPERTY_SRC);
}
public GenericLinkPO createSrcLink(GenericObjectPO tgt, String modifier)
{
return hasLinkConstraint(tgt, GenericLink.PROPERTY_SRC, modifier);
}
public GenericObjectPO createTgtPO()
{
GenericObjectPO result = new GenericObjectPO(new GenericObject[]{});
result.setModifier(this.getPattern().getModifier());
super.hasLink(GenericLink.PROPERTY_TGT, result);
return result;
}
public GenericObjectPO createTgtPO(String modifier)
{
GenericObjectPO result = new GenericObjectPO(new GenericObject[]{});
result.setModifier(modifier);
super.hasLink(GenericLink.PROPERTY_TGT, result);
return result;
}
public GenericLinkPO createTgtLink(GenericObjectPO tgt)
{
return hasLinkConstraint(tgt, GenericLink.PROPERTY_TGT);
}
public GenericLinkPO createTgtLink(GenericObjectPO tgt, String modifier)
{
return hasLinkConstraint(tgt, GenericLink.PROPERTY_TGT, modifier);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy