public enum WeightTypes extends Enum<WeightTypes>
Module: layout-api
To use this in your app, include the following dependency in your POM:
<dependency> <groupId>org.cytoscape</groupId> <artifactId>layout-api</artifactId> </dependency>
Enum Constant and Description |
---|
DISTANCE
Use 1 minus the normalized value.
|
GUESS
Use a heuristic to guess.
|
LOG
Use the negative log value.
|
WEIGHT
Use the normalized value.
|
Modifier and Type | Method and Description |
---|---|
String |
toString()
Returns the name of the weighting type.
|
static WeightTypes |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WeightTypes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WeightTypes GUESS
public static final WeightTypes LOG
public static final WeightTypes DISTANCE
public static final WeightTypes WEIGHT
public static WeightTypes[] values()
for (WeightTypes c : WeightTypes.values()) System.out.println(c);
public static WeightTypes valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic String toString()
toString
in class Enum<WeightTypes>
Copyright 2011-2015 Cytoscape Consortium. All rights reserved.