Uses of Class
com.atlassian.jira.datetime.LocalDate

Packages that use LocalDate
com.atlassian.jira.datetime A small set of classes that allow clients to format and parse dates in JIRA, in a way that is time zone and locale aware. 
com.atlassian.jira.issue.index.indexers.impl   
com.atlassian.jira.issue.statistics   
com.atlassian.jira.jql.util   
com.atlassian.jira.util   
 

Uses of LocalDate in com.atlassian.jira.datetime
 

Methods in com.atlassian.jira.datetime that return LocalDate
static LocalDate LocalDateFactory.from(Date date)
          Constructs a new LocalDate from the given java.util.Date by interpreting the Date in the system (JVM) timezone.
static LocalDate LocalDateFactory.fromIsoBasicFormat(String isoDate)
          Turns an "ISO Basic" formatted date (ie YYYYMMDD) into a LocalDate.
static LocalDate LocalDateFactory.getLocalDate(Date date, TimeZone timeZone)
          Returns the LocalDate for a point in time in a given TimeZone.
 

Methods in com.atlassian.jira.datetime with parameters of type LocalDate
 int LocalDate.compareTo(LocalDate localDate)
           
static String LocalDateFactory.toIsoBasic(LocalDate localDate)
          Formats the given LocalDate in "ISO Basic" format (ie YYYYMMDD).
 

Uses of LocalDate in com.atlassian.jira.issue.index.indexers.impl
 

Methods in com.atlassian.jira.issue.index.indexers.impl with parameters of type LocalDate
 void BaseFieldIndexer.indexLocalDateField(org.apache.lucene.document.Document doc, String indexField, LocalDate localDate, Issue issue)
          Index a single keyword field, with a LocalDate value
 

Uses of LocalDate in com.atlassian.jira.issue.statistics
 

Fields in com.atlassian.jira.issue.statistics with type parameters of type LocalDate
static LuceneFieldSorter<LocalDate> DateFieldSorter.ISSUE_DUEDATE_STATSMAPPER
           
 

Methods in com.atlassian.jira.issue.statistics that return LocalDate
 LocalDate LocalDateFieldSorter.getValueFromLuceneField(String documentValue)
           
 

Methods in com.atlassian.jira.issue.statistics that return types with arguments of type LocalDate
 Comparator<LocalDate> LocalDateFieldSorter.getComparator()
           
 

Uses of LocalDate in com.atlassian.jira.jql.util
 

Methods in com.atlassian.jira.jql.util that return LocalDate
 LocalDate JqlLocalDateSupportImpl.convertToLocalDate(Long dateLong)
           
 LocalDate JqlLocalDateSupport.convertToLocalDate(Long dateLong)
          Try to parse the passed date long.
 LocalDate JqlLocalDateSupportImpl.convertToLocalDate(String dateString)
           
 LocalDate JqlLocalDateSupport.convertToLocalDate(String dateString)
          Try to parse the passed date string using the formats that JQL understands.
 

Methods in com.atlassian.jira.jql.util with parameters of type LocalDate
 Date JqlLocalDateSupportImpl.convertToDate(LocalDate date)
           
 Date JqlLocalDateSupport.convertToDate(LocalDate date)
          Converts a LocalDate to a Date using the systems time zone.
 String JqlLocalDateSupportImpl.getIndexedValue(LocalDate date)
           
 String JqlLocalDateSupport.getIndexedValue(LocalDate date)
          Converts a date into the index-friendly format.
 String JqlLocalDateSupportImpl.getLocalDateString(LocalDate localDate)
           
 String JqlLocalDateSupport.getLocalDateString(LocalDate date)
          Return a string representation of the passed date.
 

Uses of LocalDate in com.atlassian.jira.util
 

Methods in com.atlassian.jira.util that return LocalDate
static LocalDate LuceneUtils.stringToLocalDate(String indexValue)
           
 

Methods in com.atlassian.jira.util with parameters of type LocalDate
static String LuceneUtils.localDateToString(LocalDate localDate)
          Turns a given LocalDate value into a String suitable for storing and searching in Lucene.
 



Copyright © 2002-2014 Atlassian. All Rights Reserved.