Interface AttributeListBuilder.IMixinPoint<A extends AttributeListBuilder.ITypedAttribute<Point>>
- Type Parameters:
A- Type of the elements on which to attribute is valid.
- All Superinterfaces:
AttributeListBuilder.ITypedAttributeDescriptor<Point,A>
- All Known Implementing Classes:
AttributeListBuilder.AttributeExteriorLabelPosition
- Enclosing class:
AttributeListBuilder<A extends IGraphDotAttributeList, Self extends AttributeListBuilder<A,Self>>
public static interface AttributeListBuilder.IMixinPoint<A extends AttributeListBuilder.ITypedAttribute<Point>>
extends AttributeListBuilder.ITypedAttributeDescriptor<Point,A>
Mixin for attributes that accept a point.
- Since:
- 8.2.0
- Author:
- XIMA MEDIA GmbH
-
Nested Class Summary
Nested classes/interfaces inherited from interface AttributeListBuilder.ITypedAttributeDescriptor
AttributeListBuilder.ITypedAttributeDescriptor.E<T>, AttributeListBuilder.ITypedAttributeDescriptor.Edge<T,A>, AttributeListBuilder.ITypedAttributeDescriptor.G<T>, AttributeListBuilder.ITypedAttributeDescriptor.GE<T>, AttributeListBuilder.ITypedAttributeDescriptor.GN<T>, AttributeListBuilder.ITypedAttributeDescriptor.GNE<T>, AttributeListBuilder.ITypedAttributeDescriptor.Graph<T, A>, AttributeListBuilder.ITypedAttributeDescriptor.GS<T>, AttributeListBuilder.ITypedAttributeDescriptor.GSE<T>, AttributeListBuilder.ITypedAttributeDescriptor.GSN<T>, AttributeListBuilder.ITypedAttributeDescriptor.GSNE<T>, AttributeListBuilder.ITypedAttributeDescriptor.N<T>, AttributeListBuilder.ITypedAttributeDescriptor.NE<T>, AttributeListBuilder.ITypedAttributeDescriptor.Node<T, A>, AttributeListBuilder.ITypedAttributeDescriptor.S<T>, AttributeListBuilder.ITypedAttributeDescriptor.SE<T>, AttributeListBuilder.ITypedAttributeDescriptor.SN<T>, AttributeListBuilder.ITypedAttributeDescriptor.SNE<T>, AttributeListBuilder.ITypedAttributeDescriptor.SubGraph<T, A> -
Method Summary
Modifier and TypeMethodDescriptiondefault Afixed(double x, double y) Uses a fixed 2D point with the given coordinates.default Afixed(double x, double y, double z) Uses a fixed 3D point with the given coordinates.default Aloose(double x, double y) Uses a loose 2D point with the given coordinates.default Aloose(double x, double y, double z) Uses a loose 3D point with the given coordinates.Methods inherited from interface AttributeListBuilder.ITypedAttributeDescriptor
name, of
-
Method Details
-
fixed
Uses a fixed 2D point with the given coordinates.- Parameters:
x- The X position of the point.y- The Y position of the point.- Returns:
- An attribute value with the given point.
-
fixed
Uses a fixed 3D point with the given coordinates.- Parameters:
x- The X position of the point.y- The Y position of the point.z- The Z position of the point.- Returns:
- An attribute value with the given point.
-
loose
Uses a loose 2D point with the given coordinates.- Parameters:
x- The X position of the point.y- The Y position of the point.- Returns:
- An attribute value with the given point.
-
loose
Uses a loose 3D point with the given coordinates.- Parameters:
x- The X position of the point.y- The Y position of the point.z- The Z position of the point.- Returns:
- An attribute value with the given point.
-