Uses of Class
net.sf.jmatchparser.util.csv.fieldreader.ParseFormat

Packages that use ParseFormat
net.sf.jmatchparser.util.csv.fieldreader This package contains the FieldReader class and classes that are used by it. 
 

Uses of ParseFormat in net.sf.jmatchparser.util.csv.fieldreader
 

Fields in net.sf.jmatchparser.util.csv.fieldreader declared as ParseFormat
static ParseFormat<String> ParseFormat.IDENTITY
          Parse format that returns the original string.
 

Methods in net.sf.jmatchparser.util.csv.fieldreader that return ParseFormat
static
<TT extends Enum<TT>>
ParseFormat<TT>
ParseFormat.forEnum(Class<TT> enumType)
          Parse format that parses Enum names to their values.
static ParseFormat<Date> ParseFormat.fromDateFormat(DateFormat format)
          Parse format that uses a DateFormat for parsing.
static ParseFormat<Object> ParseFormat.fromFormat(Format format)
          Parse format that uses a Format for parsing.
static ParseFormat<Number> ParseFormat.fromNumberFormat(NumberFormat format)
          Parse format that uses a NumberFormat for parsing.
static
<TT> ParseFormat<TT>
ParseFormat.fromReplacement(Pattern regex, String replacement, ParseFormat<TT> nextFormat)
          Parse format that performs a regex replacement before parsing with another format.
 

Methods in net.sf.jmatchparser.util.csv.fieldreader with parameters of type ParseFormat
static
<TT> ParseFormat<TT>
ParseFormat.fromReplacement(Pattern regex, String replacement, ParseFormat<TT> nextFormat)
          Parse format that performs a regex replacement before parsing with another format.
static FieldSource FieldSource.withFormat(FieldSource source, ParseFormat<String> format)
          Create a field source that applies a ParseFormat on another field source.
 

Constructors in net.sf.jmatchparser.util.csv.fieldreader with parameters of type ParseFormat
FieldDefinition(Pattern mask, int maxLength, FieldDefinition.MandatoryState mandatory, ParseFormat<T> format)
          Create a new field definition.
FieldDefinition(String mask, int maxLength, FieldDefinition.MandatoryState mandatory, ParseFormat<T> format)
          Create a new field definition.
 



Copyright © 2011. All Rights Reserved.