Uses of Class
org.apache.wicket.util.parse.metapattern.MetaPattern
-
Packages that use MetaPattern Package Description org.apache.wicket.util.parse.metapattern Regular Expressions meta pattern support.org.apache.wicket.util.parse.metapattern.parsers Regular Expressions meta pattern parsers.org.apache.wicket.util.value This package provides casting utilities. -
-
Uses of MetaPattern in org.apache.wicket.util.parse.metapattern
Subclasses of MetaPattern in org.apache.wicket.util.parse.metapattern Modifier and Type Class Description classBooleanGroupA Group that captures case-sensitive boolean values "true" or "false".classFloatingPointGroupA Group that captures floating point values (doubles and floats).classGroupA Group is a piece of a regular expression (referenced by some Java field or local variable) that forms a "capturing group" within the larger regular expression.classIntegerGroupA Group that captures integer values (positive and negative whole numbers, not Java ints).classOptionalMetaPatternMakes any MetaPattern optional by enclosing the pattern in an optionality expression.Fields in org.apache.wicket.util.parse.metapattern declared as MetaPattern Modifier and Type Field Description static MetaPatternMetaPattern. AMPERSANDConstant for ampersand.static MetaPatternMetaPattern. ANYTHINGConstant for anything (string).static MetaPatternMetaPattern. ANYTHING_NON_EMPTYConstant for anything non-empty (string).static MetaPatternMetaPattern. AT_SIGNConstant for at.static MetaPatternMetaPattern. BACKSLASHConstant for backslash.static MetaPatternMetaPattern. COLONConstant for colon.static MetaPatternMetaPattern. COMMAConstant for comma.static MetaPatternMetaPattern. DASHConstant for dash.static MetaPatternMetaPattern. DIGITConstant for digit.static MetaPatternMetaPattern. DIGITSConstant for digits.static MetaPatternMetaPattern. DOLLAR_SIGNConstant for dollar.static MetaPatternMetaPattern. DOTConstant for dot.static MetaPatternMetaPattern. DOUBLE_QUOTED_STRINGConstant for a double quoted string.static MetaPatternMetaPattern. EQUALSConstant for equals.static MetaPatternMetaPattern. EXCLAMATION_POINTConstant for excl.static MetaPatternMetaPattern. FLOATING_POINT_NUMBERConstant for a floating point number.static MetaPatternMetaPattern. HEXADECIMAL_DIGITConstant for hex digit.static MetaPatternMetaPattern. HEXADECIMAL_DIGITSConstant for hex digits.static MetaPatternMetaPattern. INTEGERConstant for an integer (of any size).static MetaPatternMetaPattern. LEFT_CURLYConstant for left curly braces.static MetaPatternMetaPattern. LEFT_PARENConstant for left paren.static MetaPatternMetaPattern. LEFT_SQUAREConstant for left square bracket.static MetaPatternMetaPattern. MINUSConstant for minus.static MetaPatternMetaPattern. NON_WORDConstant for non-word.static MetaPatternMetaPattern. OPTIONAL_STRINGConstant for an optional string.static MetaPatternMetaPattern. OPTIONAL_WHITESPACEConstant for optional whitespace.static MetaPatternMetaPattern. OPTIONAL_WORDConstant for an optional word.static MetaPatternMetaPattern. PERCENTConstant for percent.static MetaPatternMetaPattern. PERL_INTERPOLATIONConstant for perl interpolation.static MetaPatternMetaPattern. PIPEConstant for pipe.static MetaPatternMetaPattern. PLUSConstant for plus.static MetaPatternMetaPattern. POSITIVE_INTEGERConstant for a positive integer.static MetaPatternMetaPattern. POUND_SIGNConstant for pound.static MetaPatternMetaPattern. RIGHT_CURLYConstant for right curly braces.static MetaPatternMetaPattern. RIGHT_PARENConstant for right paren.static MetaPatternMetaPattern. RIGHT_SQUAREConstant for right square bracket.static MetaPatternMetaPattern. SEMICOLONConstant for semicolon.static MetaPatternMetaPattern. SLASHConstant for slash.static MetaPatternMetaPattern. STARConstant for star.static MetaPatternMetaPattern. STRINGConstant for a string.static MetaPatternMetaPattern. TILDEConstant for tilde.static MetaPatternMetaPattern. UNDERSCOREConstant for underscore.static MetaPatternMetaPattern. VARIABLE_NAMEConstant for a variable name.static MetaPatternMetaPattern. WHITESPACEConstant for whitespace.static MetaPatternMetaPattern. WORDConstant for a word.static MetaPatternMetaPattern. XML_ATTRIBUTE_NAMEConstant for an XML attribute name.static MetaPatternMetaPattern. XML_ELEMENT_NAMEConstant for an XML element name.Constructors in org.apache.wicket.util.parse.metapattern with parameters of type MetaPattern Constructor Description Group(MetaPattern pattern)Constructor.IntegerGroup(MetaPattern pattern)Constructs an IntegerGroup that parses Strings that match the given pattern in base 10.IntegerGroup(MetaPattern pattern, int radix)Constructs an IntegerGroup that parses Strings that match the given pattern in the given radix.MetaPattern(MetaPattern pattern)Copy constructor.MetaPattern(MetaPattern... patterns)Constructs from an array of MetaPatterns.OptionalMetaPattern(MetaPattern pattern)ConstructorOptionalMetaPattern(MetaPattern[] patterns)ConstructorConstructor parameters in org.apache.wicket.util.parse.metapattern with type arguments of type MetaPattern Constructor Description MetaPattern(List<MetaPattern> patterns)Constructs from a list of MetaPatternsOptionalMetaPattern(List<MetaPattern> patterns)Constructor -
Uses of MetaPattern in org.apache.wicket.util.parse.metapattern.parsers
Methods in org.apache.wicket.util.parse.metapattern.parsers with parameters of type MetaPattern Modifier and Type Method Description protected booleanMetaPatternParser. advance(MetaPattern pattern)Advance parsing to the next element.voidMetaPatternParser. setPattern(MetaPattern pattern)Constructors in org.apache.wicket.util.parse.metapattern.parsers with parameters of type MetaPattern Constructor Description ListParser(MetaPattern entryPattern, MetaPattern separatorPattern, CharSequence input)Constructs a list parser from an entry MetaPattern, a separator MetaPattern and an input character sequence.MetaPatternParser(MetaPattern pattern, CharSequence input)Construct the parser and initialize the matcher with the pattern given.VariableAssignmentParser(CharSequence input, MetaPattern valuePattern)Construct a variable assignment parser against a given input character sequence -
Uses of MetaPattern in org.apache.wicket.util.value
Constructors in org.apache.wicket.util.value with parameters of type MetaPattern Constructor Description ValueMap(String keyValuePairs, String delimiter, MetaPattern valuePattern)Constructor.
-