Package joptsimple.util
Class RegexMatcher
- java.lang.Object
-
- joptsimple.util.RegexMatcher
-
- All Implemented Interfaces:
ValueConverter<java.lang.String>
public class RegexMatcher extends java.lang.Object implements ValueConverter<java.lang.String>
Ensures that values entirely match a regular expression.
-
-
Field Summary
Fields Modifier and Type Field Description private java.util.regex.Patternpattern
-
Constructor Summary
Constructors Constructor Description RegexMatcher(java.lang.String pattern, int flags)Creates a matcher that uses the given regular expression, modified by the given flags.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Stringconvert(java.lang.String value)Converts the given string value into a Java type.private voidraiseValueConversionFailure(java.lang.String value)static ValueConverter<java.lang.String>regex(java.lang.String pattern)Gives a matcher that uses the given regular expression.java.lang.StringvaluePattern()Gives a string that describes the pattern of the values this converter expects, if any.java.lang.Class<java.lang.String>valueType()Gives the class of the type of values this converter converts to.
-
-
-
Constructor Detail
-
RegexMatcher
public RegexMatcher(java.lang.String pattern, int flags)Creates a matcher that uses the given regular expression, modified by the given flags.- Parameters:
pattern- the regular expression patternflags- modifying regex flags- Throws:
java.lang.IllegalArgumentException- if bit values other than those corresponding to the defined match flags are set inflagsjava.util.regex.PatternSyntaxException- if the expression's syntax is invalid
-
-
Method Detail
-
regex
public static ValueConverter<java.lang.String> regex(java.lang.String pattern)
Gives a matcher that uses the given regular expression.- Parameters:
pattern- the regular expression pattern- Returns:
- the new converter
- Throws:
java.util.regex.PatternSyntaxException- if the expression's syntax is invalid
-
convert
public java.lang.String convert(java.lang.String value)
Description copied from interface:ValueConverterConverts the given string value into a Java type.- Specified by:
convertin interfaceValueConverter<java.lang.String>- Parameters:
value- the string to convert- Returns:
- the converted value
-
valueType
public java.lang.Class<java.lang.String> valueType()
Description copied from interface:ValueConverterGives the class of the type of values this converter converts to.- Specified by:
valueTypein interfaceValueConverter<java.lang.String>- Returns:
- the target class for conversion
-
valuePattern
public java.lang.String valuePattern()
Description copied from interface:ValueConverterGives a string that describes the pattern of the values this converter expects, if any. For example, a date converter can respond with adate format string.- Specified by:
valuePatternin interfaceValueConverter<java.lang.String>- Returns:
- a value pattern, or
nullif there's nothing interesting here
-
raiseValueConversionFailure
private void raiseValueConversionFailure(java.lang.String value)
-
-