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