public enum EdgeWeightMergeStrategy extends Enum<EdgeWeightMergeStrategy>
Modifier and Type | Method and Description |
---|---|
static EdgeWeightMergeStrategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EdgeWeightMergeStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EdgeWeightMergeStrategy SUM
public static final EdgeWeightMergeStrategy AVG
public static final EdgeWeightMergeStrategy MAX
public static final EdgeWeightMergeStrategy MIN
public static EdgeWeightMergeStrategy[] values()
for (EdgeWeightMergeStrategy c : EdgeWeightMergeStrategy.values()) System.out.println(c);
public static EdgeWeightMergeStrategy 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 © 2007–2015 Gephi Consortium. All rights reserved.