guru.nidi.graphviz.attribute.Arrow Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of context-map-generator Show documentation
Show all versions of context-map-generator Show documentation
A graphical DDD Context Map generator on the basis of Graphviz
/*
* Copyright © 2015 Stefan Niederhauser ([email protected])
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package guru.nidi.graphviz.attribute;
import javax.annotation.Nullable;
import static guru.nidi.graphviz.attribute.Attributes.attr;
import static guru.nidi.graphviz.attribute.Attributes.attrs;
import static java.util.Locale.ENGLISH;
public final class Arrow extends SingleAttributes {
public enum DirType {
FORWARD, BACK, BOTH, NONE
}
public static final Arrow
BOX = new Arrow("box"),
CROW = new Arrow("crow"),
CURVE = new Arrow("curve"),
DIAMOND = new Arrow("diamond"),
DOT = new Arrow("dot"),
ICURVE = new Arrow("icurve"),
INV = new Arrow("inv"),
NONE = new Arrow("none"),
NORMAL = new Arrow("normal"),
TEE = new Arrow("tee"),
VEE = new Arrow("vee");
private Arrow(String key, String value) {
super(key, value);
}
private Arrow(String value) {
super("arrowhead", value);
}
public Arrow tail() {
return key("arrowtail");
}
public Arrow open() {
return value(value.charAt(0) == 'o' ? value : ("o" + value));
}
public Arrow left() {
return arrowDir("l");
}
public Arrow right() {
return arrowDir("r");
}
public Arrow and(Arrow arrow) {
return value(arrow.value + value);
}
public Attributes size(double size) {
return config(size, null);
}
public Attributes dir(DirType type) {
return config(0, type);
}
public Attributes config(double size, @Nullable DirType type) {
Attributes a = this;
if (size > 0) {
a = attrs(a, attr("arrowsize", size));
}
if (type != null) {
a = attrs(a, attr("dir", type.name().toLowerCase(ENGLISH)));
}
return a;
}
private Arrow arrowDir(String dir) {
switch (value.charAt(0)) {
case 'l':
case 'r':
return value(dir + value.substring(1));
case 'o':
final char s = value.charAt(1);
return value("o" + dir + (s == 'r' || s == 'l' ? value.substring(2) : value.substring(1)));
default:
return value(dir + value);
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy