All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy