Package de.xima.fc.common.graphdot
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 de.xima.fc.common.graphdot.AttributeListBuilder.ITypedAttributeDescriptor
AttributeListBuilder.ITypedAttributeDescriptor.E<T>, AttributeListBuilder.ITypedAttributeDescriptor.Edge<T,A extends AttributeListBuilder.ITypedAttribute<T>>, AttributeListBuilder.ITypedAttributeDescriptor.G<T>, AttributeListBuilder.ITypedAttributeDescriptor.GE<T>, AttributeListBuilder.ITypedAttributeDescriptor.GN<T>, AttributeListBuilder.ITypedAttributeDescriptor.GNE<T>, AttributeListBuilder.ITypedAttributeDescriptor.Graph<T,A extends AttributeListBuilder.ITypedAttribute<T>>, 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 extends AttributeListBuilder.ITypedAttribute<T>>, AttributeListBuilder.ITypedAttributeDescriptor.S<T>, AttributeListBuilder.ITypedAttributeDescriptor.SE<T>, AttributeListBuilder.ITypedAttributeDescriptor.SN<T>, AttributeListBuilder.ITypedAttributeDescriptor.SNE<T>, AttributeListBuilder.ITypedAttributeDescriptor.SubGraph<T,A extends AttributeListBuilder.ITypedAttribute<T>> 
 - 
 
- 
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default 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 de.xima.fc.common.graphdot.AttributeListBuilder.ITypedAttributeDescriptor
name, of 
 - 
 
 - 
 
- 
- 
Method Detail
- 
fixed
default A fixed(double x, double y)
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
default A fixed(double x, double y, double z)
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
default A loose(double x, double y)
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
default A loose(double x, double y, double z)
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.
 
 
 - 
 
 -