Enum GraphFilter.Legal
- java.lang.Object
-
- java.lang.Enum<GraphFilter.Legal>
-
- org.apache.tinkerpop.gremlin.process.computer.GraphFilter.Legal
-
- All Implemented Interfaces:
Serializable
,Comparable<GraphFilter.Legal>
- Enclosing class:
- GraphFilter
public static enum GraphFilter.Legal extends Enum<GraphFilter.Legal>
A enum denoting whether a particular result will be allowed or not.YES
means that the specified element set will definitely not be removed byGraphFilter
.MAYBE
means that the element set may or may not be filtered out by theGraphFilter
.NO
means that the specified element set will definitely be removed byGraphFilter
.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
negative()
The enum isNO
.boolean
positive()
static GraphFilter.Legal
valueOf(String name)
Returns the enum constant of this type with the specified name.static GraphFilter.Legal[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
YES
public static final GraphFilter.Legal YES
-
MAYBE
public static final GraphFilter.Legal MAYBE
-
NO
public static final GraphFilter.Legal NO
-
-
Method Detail
-
values
public static GraphFilter.Legal[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (GraphFilter.Legal c : GraphFilter.Legal.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static GraphFilter.Legal valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
positive
public boolean positive()
- Returns:
- true if potentially legal.
-
negative
public boolean negative()
The enum isNO
.- Returns:
- true if definitely not legal.
-
-