guru.nidi.graphviz.attribute.GraphAttr 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 static java.util.Locale.ENGLISH;
public final class GraphAttr {
private static final String SIZE = "size";
public static final Attributes
CENTER = new SingleAttributes<>("center", true),
COMPOUND = new SingleAttributes<>("compound", true),
CONCENTRATE = new SingleAttributes<>("concentrate", true),
FORCE_LABELS_NOT = new SingleAttributes<>("forcelabels", false),
LANDSCAPE = new SingleAttributes<>("orientation", "L");
private GraphAttr() {
}
public static Attributes dpi(int dpi) {
return new SingleAttributes<>("dpi", dpi);
}
public static Attributes sizeMax(double size) {
return new SingleAttributes<>(SIZE, size);
}
public static Attributes sizeMax(double sizeX, double sizeY) {
return new SingleAttributes<>(SIZE, sizeX + "," + sizeY);
}
public static Attributes sizePreferred(double size) {
return new SingleAttributes<>(SIZE, size + "!");
}
public static Attributes sizePreferred(double sizeX, double sizeY) {
return new SingleAttributes<>(SIZE, sizeX + "," + sizeY + "!");
}
public enum SplineMode {
LINE, SPLINE, POLYLINE, ORTHO, CURVED, NONE
}
public static Attributes splines(SplineMode mode) {
return new SingleAttributes<>("splines", mode.toString().toLowerCase(ENGLISH));
}
public static Attributes pad(double pad) {
return new SingleAttributes<>("pad", pad);
}
public static Attributes pad(double padX, double padY) {
return new SingleAttributes<>("pad", padX + "," + padY);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy