Uses of Interface
org.gephi.appearance.api.Function
-
Packages that use Function Package Description org.gephi.appearance.api API for manipulating element appearance.org.gephi.appearance.spi Interfaces that define the different ways the appearance of elements can be transformed. -
-
Uses of Function in org.gephi.appearance.api
Subinterfaces of Function in org.gephi.appearance.api Modifier and Type Interface Description interface
AttributeFunction
Attribute functions are based on attribute columns.interface
GraphFunction
A graph function operates based on graph attributes such as edge type or node degree.interface
PartitionFunction
Partition function.interface
RankingFunction
Ranking function.interface
SimpleFunction
Simple functions are neither ranking nor partition.Methods in org.gephi.appearance.api that return Function Modifier and Type Method Description Function
AppearanceModel. getEdgeFunction(Column column, Class<? extends Transformer> transformer)
Returns the edge function for the given column and transformer.Function[]
AppearanceModel. getEdgeFunctions()
Returns all edge functions for the given graph.Function
AppearanceModel. getNodeFunction(Column column, Class<? extends Transformer> transformer)
Returns the node function for the given column and transformer.Function[]
AppearanceModel. getNodeFunctions()
Returns all node functions for the given graph.Methods in org.gephi.appearance.api with parameters of type Function Modifier and Type Method Description void
AppearanceController. transform(Function function)
Apply the function's transformer. -
Uses of Function in org.gephi.appearance.spi
Methods in org.gephi.appearance.spi with parameters of type Function Modifier and Type Method Description JPanel
TransformerUI. getPanel(Function function)
Returns the transformer panel for the given function.
-