public static enum SyntaxElement.Constructor extends java.lang.Enum<SyntaxElement.Constructor>
Enum Constant and Description |
---|
AND |
COMP |
INVERSE |
JOIN |
NOT |
OR |
REFLEXIVE |
SYMMETRIC |
TRANSITIVE |
Modifier and Type | Method and Description |
---|---|
static SyntaxElement.Constructor |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SyntaxElement.Constructor[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SyntaxElement.Constructor AND
public static final SyntaxElement.Constructor OR
public static final SyntaxElement.Constructor NOT
public static final SyntaxElement.Constructor COMP
public static final SyntaxElement.Constructor JOIN
public static final SyntaxElement.Constructor SYMMETRIC
public static final SyntaxElement.Constructor REFLEXIVE
public static final SyntaxElement.Constructor TRANSITIVE
public static final SyntaxElement.Constructor INVERSE
public static SyntaxElement.Constructor[] values()
for (SyntaxElement.Constructor c : SyntaxElement.Constructor.values()) System.out.println(c);
public static SyntaxElement.Constructor 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 null(C) INRIA & friends, 2003-2020