public static enum AbstractCentrality.NormalizationMode extends Enum<AbstractCentrality.NormalizationMode>
| Enum Constant and Description |
|---|
MAX_1_MIN_0 |
NONE |
SUM_IS_1 |
| Modifier and Type | Method and Description |
|---|---|
static AbstractCentrality.NormalizationMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AbstractCentrality.NormalizationMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AbstractCentrality.NormalizationMode NONE
public static final AbstractCentrality.NormalizationMode SUM_IS_1
public static final AbstractCentrality.NormalizationMode MAX_1_MIN_0
public static AbstractCentrality.NormalizationMode[] values()
for (AbstractCentrality.NormalizationMode c : AbstractCentrality.NormalizationMode.values()) System.out.println(c);
public static AbstractCentrality.NormalizationMode 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 nullCopyright © 2015. All rights reserved.