Java 8 RFR 8020539: Clean up doclint problems in java.util package, part 2

Brian Burkhalter brian.burkhalter at oracle.com
Thu Jul 18 19:15:36 UTC 2013


On Jul 18, 2013, at 12:04 PM, Brian Burkhalter wrote:

> I don't at first glance see a mapping of the regular expression "+" (one or more) to something in the JLS grammar. There are
> 
> 	?	=>	[x]		zero or one x
> 	*	=>	{x}		zero or more x
> 
> but nothing (succinct at least) apparent for the plus sign.

I guess

	x+	=>	x {x}

would work.

Brian


More information about the core-libs-dev mailing list