com.structurizr.autolayout.graphviz.RankDirection Maven / Gradle / Ivy
The newest version!
package com.structurizr.autolayout.graphviz;
/**
* The various rank directions used by graphviz.
*/
public enum RankDirection {
TopBottom("TB"),
BottomTop("BT"),
LeftRight("LR"),
RightLeft("RL");
private String code;
RankDirection(String code) {
this.code = code;
}
public String getCode() {
return code;
}
}