public enum NodeType extends Enum<NodeType>
Enum Constant and Description |
---|
COLUMN |
DISTINCT |
EQUALITY |
FROM |
FUNCTION |
IN |
INSERT_COLUMNS |
INSERT_VALUES |
JOIN |
LIKE |
LIMIT_OFFSET |
ORDER_BY |
RESULT |
UNDEFINED |
UPDATE_SET |
VALUE |
WHERE |
Modifier and Type | Method and Description |
---|---|
static NodeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NodeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NodeType UNDEFINED
public static final NodeType VALUE
public static final NodeType COLUMN
public static final NodeType LIMIT_OFFSET
public static final NodeType FUNCTION
public static final NodeType EQUALITY
public static final NodeType LIKE
public static final NodeType DISTINCT
public static final NodeType IN
public static final NodeType RESULT
public static final NodeType WHERE
public static final NodeType JOIN
public static final NodeType FROM
public static final NodeType UPDATE_SET
public static final NodeType INSERT_COLUMNS
public static final NodeType INSERT_VALUES
public static final NodeType ORDER_BY
public static NodeType[] values()
for (NodeType c : NodeType.values()) System.out.println(c);
public static NodeType 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 © 2001–2021 Apache Cayenne. All rights reserved.