Uses of Class
org.tentackle.common.Date

Packages that use Date
Package
Description
Common classes for build- and runtime.
Low-level persistence layer implementation.
Miscellaneous stuff.
Everything that doesn't fit elsewhere.
  • Uses of Date in org.tentackle.common

    Fields in org.tentackle.common declared as Date
    Modifier and Type
    Field
    Description
    static final Date
    DateHelper.MIN_DATE
    epochal date zero: 1.1.1970 00:00:00 GMT
    Methods in org.tentackle.common that return Date
    Modifier and Type
    Method
    Description
    Date.clone()
    static Date
    Date.createFrozen(long epoch)
    Creates a frozen date.
    static Date
    DateHelper.toDate(Calendar cal)
    Converts a Calendar into a org.tentackle.misc.Date.
    static Date
    DateHelper.toDate(Date date)
    Converts a java.util.Date into an org.tentackle.misc.Date.
    static Date
    DateHelper.today(int dayOffset, int monthOffset, int yearOffset)
    Gets DateHelper.today() with an offset.
    static Date
    Date.valueOf(String str)
    Converts a string into a date.
    Methods in org.tentackle.common with parameters of type Date
    Modifier and Type
    Method
    Description
    static Calendar
    DateHelper.toCalendar(Date date)
    Creates a calendar for the given date.
    The calendar is created using the thread-local locale, if set, else the default locale.
  • Uses of Date in org.tentackle.dbms

    Methods in org.tentackle.dbms that return Date
    Modifier and Type
    Method
    Description
    ResultSetWrapper.getDate()
    Retrieves the value of the designated column in the current row of this ResultSet object as a java.sql.Date in the Java programming language.
    ResultSetWrapper.getDate(boolean mapNull)
    Retrieves the value of the designated column in the current row of this ResultSet object as a java.sql.Date in the Java programming language.
    ResultSetWrapper.getDate(int pos)
    Retrieves the value of the designated column in the current row of this ResultSet object as a java.sql.Date in the Java programming language.
    ResultSetWrapper.getDate(int pos, boolean mapNull)
    Retrieves the value of the designated column in the current row of this ResultSet object as a java.sql.Date in the Java programming language.
    ResultSetWrapper.getDate(int pos, Calendar timezone)
    Retrieves the value of the designated column in the current row of this ResultSet object as a java.sql.Date in the Java programming language.
    ResultSetWrapper.getDate(int pos, Calendar timezone, boolean mapNull)
    Retrieves the value of the designated column in the current row of this ResultSet object as a java.sql.Date in the Java programming language.
    ResultSetWrapper.getDate(String name)
    Retrieves the value of the designated column in the current row of this ResultSet object as a java.sql.Date in the Java programming language.
    ResultSetWrapper.getDate(String name, boolean mapNull)
    Retrieves the value of the designated column in the current row of this ResultSet object as a java.sql.Date in the Java programming language.
    ResultSetWrapper.getDate(String name, Calendar timezone)
    Retrieves the value of the designated column in the current row of this ResultSet object as a java.sql.Date in the Java programming language.
    ResultSetWrapper.getDate(String name, Calendar timezone, boolean mapNull)
    Retrieves the value of the designated column in the current row of this ResultSet object as a java.sql.Date in the Java programming language.
    ResultSetWrapper.getDate(Calendar timezone)
    Retrieves the value of the designated column in the current row of this ResultSet object as a java.sql.Date in the Java programming language.
    ResultSetWrapper.getDate(Calendar timezone, boolean mapNull)
    Retrieves the value of the designated column in the current row of this ResultSet object as a java.sql.Date in the Java programming language.
  • Uses of Date in org.tentackle.misc

    Methods in org.tentackle.misc that return Date
    Modifier and Type
    Method
    Description
    static Date
    FormatHelper.parseDate(String str)
    Parses a date.
    static Date
    FormatHelper.parseShortDate(String str)
    Parses a short date.