|
Cytoscape 3.0.0-beta1 API | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<WeightTypes>
org.cytoscape.view.layout.WeightTypes
public enum WeightTypes
An enum describing different weighting strategies.
Enum Constant Summary | |
---|---|
DISTANCE
Use 1 minus the normalized value. |
|
GUESS
Use a heuristic to guess. |
|
LOG
Use the negative log value. |
|
WEIGHT
Use the normalized value. |
Method Summary | |
---|---|
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. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final WeightTypes GUESS
public static final WeightTypes LOG
public static final WeightTypes DISTANCE
public static final WeightTypes WEIGHT
Method Detail |
---|
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 name
NullPointerException
- if the argument is nullpublic String toString()
toString
in class Enum<WeightTypes>
|
Cytoscape 3.0.0-beta1 API | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |