|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object com.atlassian.jira.rest.Dates
public class Dates
Utility class for formatting and parsing date and date/time objects in ISO8601 format.
Nested Class Summary | |
---|---|
static class |
Dates.DateAdapter
|
static class |
Dates.DateTimeAdapter
|
Field Summary | |
---|---|
static String |
DATE_FORMAT
The format used for dates in the REST plugin. |
static String |
TIME_FORMAT
The format used for times in the REST plugin. |
Method Summary | |
---|---|
static String |
asDateString(Date date)
Converts the given Date object to a String. |
static String |
asDateString(Timestamp timestamp)
Converts the given Timestamp object to a String. |
static String |
asTimeString(Date date)
Converts the given Date object to a String. |
static String |
asTimeString(Timestamp timestamp)
Converts the given Timestamp object to a String. |
static Date |
fromDateString(String date)
Converts the given date String into a Date object. |
static Date |
fromTimeString(String time)
Converts the given date and time String to a Date object. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
public static final String DATE_FORMAT
public static final String TIME_FORMAT
Method Detail |
---|
public static String asTimeString(@Nullable Date date)
"yyyy-MM-dd\'T\'HH:mm:ss.SSSZ"
.
date
- a Date
public static String asTimeString(@Nullable Timestamp timestamp)
"yyyy-MM-dd\'T\'HH:mm:ss.SSSZ"
.
timestamp
- a Date
public static Date fromTimeString(@Nullable String time) throws IllegalArgumentException
"yyyy-MM-dd\'T\'HH:mm:ss.SSSZ"
.
time
- a String representation of a date and time
RuntimeException
- if there is an error parsing the date
IllegalArgumentException
- if the input string is not in the expected formatpublic static String asDateString(@Nullable Date date)
"yyyy-MM-dd"
.
date
- a Date
public static String asDateString(@Nullable Timestamp timestamp)
"yyyy-MM-dd"
.
timestamp
- a Date
public static Date fromDateString(@Nullable String date) throws IllegalArgumentException
"yyyy-MM-dd"
.
date
- a String containing a date
IllegalArgumentException
- if the input string is not in the expected format
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |