public enum EdgeWeightType extends Enum<EdgeWeightType>
| Modifier and Type | Method and Description |
|---|---|
static EdgeWeightType |
fromString(String key) |
String |
getKey() |
static EdgeWeightType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EdgeWeightType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EdgeWeightType TIME
public static final EdgeWeightType DISTANCE
public static EdgeWeightType[] values()
for (EdgeWeightType c : EdgeWeightType.values()) System.out.println(c);
public static EdgeWeightType 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 static EdgeWeightType fromString(String key)
public String getKey()
Copyright © 2017. All rights reserved.