Class Expression.Plus<E>

java.lang.Object
edu.washington.cs.knowitall.regex.Expression.Plus<E>
Type Parameters:
E -
All Implemented Interfaces:
com.google.common.base.Predicate<E>, Expression<E>, Predicate<E>
Enclosing interface:
Expression<E>

public static class Expression.Plus<E> extends Object implements Expression<E>
One or more of the enclosed expression. Plus(expr) is equivalent to expr followed by Star(expr). <foo>+ is the same as <foo> <foo>*