Class DatetimeHelper
- java.lang.Object
- 
- org.apache.tinkerpop.gremlin.util.DatetimeHelper
 
- 
 public final class DatetimeHelper extends Object Utility class for parsing and formatting dates/times.
- 
- 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static OffsetDateTimedatetime()A proxy allows for syntax similar to Gremlin grammar ofdatetime().static OffsetDateTimedatetime(String d)A proxy call toparse(String)but allows for syntax similar to Gremlin grammar ofdatetime().static Stringformat(Instant d)Formats anInstantto a form of2018-03-22T00:35:44Zat UTC.static OffsetDateTimeparse(String d)Parses aStringrepresenting a date and/or time to aDateobject with a default time zone offset of UTC (+00:00).
 
- 
- 
- 
Method Detail- 
formatpublic static String format(Instant d) Formats anInstantto a form of2018-03-22T00:35:44Zat UTC.
 - 
parsepublic static OffsetDateTime parse(String d) Parses aStringrepresenting a date and/or time to aDateobject with a default time zone offset of UTC (+00:00). It can parse dates in any of the following formats.- 2018-03-22
- 2018-03-22T00:35:44
- 2018-03-22T00:35:44Z
- 2018-03-22T00:35:44.741
- 2018-03-22T00:35:44.741Z
- 2018-03-22T00:35:44.741+1600
- 2018-03-22T00:35:44.741+16:00
- 2018-03-22T00:35:44.741+160000
- 2018-03-22T00:35:44.741+16:00:00
 
 - 
datetimepublic static OffsetDateTime datetime(String d) A proxy call toparse(String)but allows for syntax similar to Gremlin grammar ofdatetime().
 - 
datetimepublic static OffsetDateTime datetime() A proxy allows for syntax similar to Gremlin grammar ofdatetime().
 
- 
 
-