public enum FilterType extends java.lang.Enum<FilterType>
| Enum Constant and Description |
|---|
EDGE
an edge-filter
|
GENERIC
a generic filter
|
INTERSECTION
a filter intersection
|
NONE
No filter type associated
|
PATH_FINDING
a path finding filter
|
UNION
a filter union
|
VERTEX
a vertex-filter
|
| Modifier and Type | Method and Description |
|---|---|
EntityType |
getEntityType() |
static FilterType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FilterType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FilterType EDGE
public static final FilterType GENERIC
public static final FilterType INTERSECTION
public static final FilterType NONE
public static final FilterType PATH_FINDING
public static final FilterType UNION
public static final FilterType VERTEX
public final EntityType getEntityType()
public static FilterType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic static FilterType[] values()
for (FilterType c : FilterType.values()) System.out.println(c);