Class NodeShapeVisualProperty
- java.lang.Object
-
- org.cytoscape.view.model.AbstractVisualProperty<NodeShape>
-
- org.cytoscape.view.presentation.property.NodeShapeVisualProperty
-
- All Implemented Interfaces:
VisualProperty<NodeShape>
public final class NodeShapeVisualProperty extends AbstractVisualProperty<NodeShape>
Visual Property forNodeShapevalues. This implementation provides basic default shapes. Other shapes can be provided by the rendering engine.Module:
presentation-apiTo use this in your app, include the following dependency in your POM:
<dependency> <groupId>org.cytoscape</groupId> <artifactId>presentation-api</artifactId> </dependency>
Cytoscape Backwards Compatibility (Final Class): This class is final and therefore can't be extended by users. This means that we may add methods for minor version updates. Methods will only be removed for major version updates.
-
-
Field Summary
Fields Modifier and Type Field Description static NodeShapeDIAMONDDiamond shape.static NodeShapeELLIPSEEllipse shape.static NodeShapeHEXAGONHexagonal shape.static NodeShapeOCTAGONOctagonal shape.static NodeShapePARALLELOGRAMParallelogram shape.static NodeShapeRECTANGLERectangular shape.static NodeShapeROUND_RECTANGLERectangular shape with rounded corners.static NodeShapeTRIANGLETriangular shape.-
Fields inherited from class org.cytoscape.view.model.AbstractVisualProperty
shouldIgnoreDefault
-
-
Constructor Summary
Constructors Constructor Description NodeShapeVisualProperty(NodeShape defaultValue, String id, String displayName, Class<? extends CyIdentifiable> modelDataType)Constructor.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static booleanisDefaultShape(NodeShape shape)Returns true if the specified shape is one of the possible default shape values.NodeShapeparseSerializableString(String value)Returns an object of type T given a string serialized from the getSerializableString(T value) method.StringtoSerializableString(NodeShape value)Returns a string of the specified value suitable for serializing to XML other text output.-
Methods inherited from class org.cytoscape.view.model.AbstractVisualProperty
getDefault, getDisplayName, getIdString, getRange, getTargetDataType, shouldIgnoreDefault, toString
-
-
-
-
Field Detail
-
RECTANGLE
public static final NodeShape RECTANGLE
Rectangular shape.
-
ROUND_RECTANGLE
public static final NodeShape ROUND_RECTANGLE
Rectangular shape with rounded corners.
-
TRIANGLE
public static final NodeShape TRIANGLE
Triangular shape.
-
PARALLELOGRAM
public static final NodeShape PARALLELOGRAM
Parallelogram shape.
-
DIAMOND
public static final NodeShape DIAMOND
Diamond shape.
-
ELLIPSE
public static final NodeShape ELLIPSE
Ellipse shape.
-
HEXAGON
public static final NodeShape HEXAGON
Hexagonal shape.
-
OCTAGON
public static final NodeShape OCTAGON
Octagonal shape.
-
-
Constructor Detail
-
NodeShapeVisualProperty
public NodeShapeVisualProperty(NodeShape defaultValue, String id, String displayName, Class<? extends CyIdentifiable> modelDataType)
Constructor.- Parameters:
defaultValue- The default NodeShape value.id- A machine readable string identifying this visual property used for XML serialization.displayName- A human readable string used for displays and user interfaces.modelDataType- The model data type associated with this visual property, e.g. CyNode, CyEdge, or CyNetwork.
-
-
Method Detail
-
toSerializableString
public String toSerializableString(NodeShape value)
Description copied from interface:VisualPropertyReturns a string of the specified value suitable for serializing to XML other text output.- Parameters:
value- the specified value.- Returns:
- a string of the specified value suitable for serializing to XML other text output.
-
parseSerializableString
public NodeShape parseSerializableString(String value)
Description copied from interface:VisualPropertyReturns an object of type T given a string serialized from the getSerializableString(T value) method.- Parameters:
value- a string serialized from the getSerializableString(T value) method.- Returns:
- an object of type T given a string serialized from the getSerializableString(T value) method.
-
isDefaultShape
public static boolean isDefaultShape(NodeShape shape)
Returns true if the specified shape is one of the possible default shape values.- Parameters:
shape- the node shape to be checked.- Returns:
- True if the specified shape is one of the possible default shape values.
-
-