public enum Geo extends Enum<Geo> implements com.thinkaurelius.titan.graphdb.query.keycondition.Relation
Modifier and Type | Method and Description |
---|---|
boolean |
isValidCondition(Object condition) |
boolean |
isValidDataType(Class<?> clazz) |
static Geo |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Geo[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Geo INTERSECT
public static final Geo DISJOINT
public static final Geo WITHIN
public static Geo[] values()
for (Geo c : Geo.values()) System.out.println(c);
public static Geo 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 boolean isValidCondition(Object condition)
isValidCondition
in interface com.thinkaurelius.titan.graphdb.query.keycondition.Relation
public boolean isValidDataType(Class<?> clazz)
isValidDataType
in interface com.thinkaurelius.titan.graphdb.query.keycondition.Relation
Copyright © 2012-2013. All Rights Reserved.