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