public class ExtractionDateUtil extends Object
| Modifier and Type | Field and Description |
|---|---|
static Collection<String> |
DEFAULT_DATE_FORMATS
A suite of default date formats that can be parsed, and thus transformed to the Solr specific format
|
static DateTimeFormatter |
ISO_8601_PARSER
Differs by
DateTimeFormatter.ISO_INSTANT in that it's lenient. |
static String |
PATTERN_ASCTIME
Date format pattern used to parse HTTP date headers in ANSI C
asctime() format. |
static String |
PATTERN_RFC1036
Date format pattern used to parse HTTP date headers in RFC 1036 format.
|
static String |
PATTERN_RFC1123
Date format pattern used to parse HTTP date headers in RFC 1123 format.
|
| Constructor and Description |
|---|
ExtractionDateUtil() |
| Modifier and Type | Method and Description |
|---|---|
static Date |
parseDate(String d)
Returns a formatter that can be use by the current thread if needed to
convert Date objects to the Internal representation.
|
static Date |
parseDate(String d,
Collection<String> fmts) |
static Date |
parseDate(String dateValue,
Collection<String> dateFormats,
Date startDate)
Slightly modified from org.apache.commons.httpclient.util.DateUtil.parseDate
|
public static final String PATTERN_RFC1123
public static final String PATTERN_RFC1036
public static final String PATTERN_ASCTIME
asctime() format.public static final DateTimeFormatter ISO_8601_PARSER
DateTimeFormatter.ISO_INSTANT in that it's lenient.public static final Collection<String> DEFAULT_DATE_FORMATS
public static Date parseDate(String d) throws ParseException
d - The input date to parseDateParseException - If the input can't be parsedpublic static Date parseDate(String d, Collection<String> fmts) throws ParseException
ParseExceptionpublic static Date parseDate(String dateValue, Collection<String> dateFormats, Date startDate) throws ParseException
Parses the date value using the given date formats.
dateValue - the date value to parsedateFormats - the date formats to usestartDate - During parsing, two digit years will be placed in the range
startDate to startDate + 100 years. This value may
be null. When null is given as a parameter, year
2000 will be used.ParseException - if none of the dataFormats could parse the dateValueCopyright © 2000-2016 Apache Software Foundation. All Rights Reserved.