flux
Class RegularExpressionAction.RegularExpressionActionResult

java.lang.Object
  extended by flux.RegularExpressionAction.RegularExpressionActionResult
Enclosing interface:
RegularExpressionAction

public static class RegularExpressionAction.RegularExpressionActionResult
extends java.lang.Object

The result when a RegularExpressionAction runs.


Field Summary
 int end
          The 0-based index of the last character matched of the input.
 int groupCount
          The number of matches found.
 java.lang.String[] groups
          The input sequences matched by the regular expression pattern.
 boolean matched
          Indicates whether the regular expression pattern was found in the input content.
 java.lang.String replaced
          The input, with groups matched by the regular expression pattern replaced by the replaceFirst and replaceAll properties.
 int start
          The 0-based location of the first occurrence of the regular expression matched in the input file or input string.
 
Constructor Summary
RegularExpressionAction.RegularExpressionActionResult()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

end

public int end
The 0-based index of the last character matched of the input.


groupCount

public int groupCount
The number of matches found.


groups

public java.lang.String[] groups
The input sequences matched by the regular expression pattern.


matched

public boolean matched
Indicates whether the regular expression pattern was found in the input content.


start

public int start
The 0-based location of the first occurrence of the regular expression matched in the input file or input string.


replaced

public java.lang.String replaced
The input, with groups matched by the regular expression pattern replaced by the replaceFirst and replaceAll properties. If replaceAll is used, all matching groups are replaced and replaceFirst is ignored. If replaceFirst is used, only the first matching group is replaced.

Constructor Detail

RegularExpressionAction.RegularExpressionActionResult

public RegularExpressionAction.RegularExpressionActionResult()


© 2014 Flux Corporation. All rights reserved.