public static enum ListScopeNode.Type extends java.lang.Enum<ListScopeNode.Type>
| Enum Constant and Description |
|---|
ALL_ITEMS |
FIRST_N_ITEMS |
LAST_N_ITEMS |
| Modifier and Type | Method and Description |
|---|---|
java.util.List<DALNode> |
checkElements(java.util.List<DALNode> inputExpressions) |
protected abstract java.util.stream.Stream<DALNode> |
toChecking(java.util.List<DALNode> inputExpressions) |
static ListScopeNode.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ListScopeNode.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ListScopeNode.Type ALL_ITEMS
public static final ListScopeNode.Type FIRST_N_ITEMS
public static final ListScopeNode.Type LAST_N_ITEMS
public static ListScopeNode.Type[] values()
for (ListScopeNode.Type c : ListScopeNode.Type.values()) System.out.println(c);
public static ListScopeNode.Type 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 nullprotected abstract java.util.stream.Stream<DALNode> toChecking(java.util.List<DALNode> inputExpressions)