org.eclipse.persistence.internal.helper.Helper.timestampFromLong()方法的使用及代码示例

x33g5p2x  于2022-01-20 转载在 其他  
字(5.8k)|赞(0)|评价(0)|浏览(112)

本文整理了Java中org.eclipse.persistence.internal.helper.Helper.timestampFromLong()方法的一些代码示例,展示了Helper.timestampFromLong()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Helper.timestampFromLong()方法的具体详情如下:
包路径:org.eclipse.persistence.internal.helper.Helper
类名称:Helper
方法名:timestampFromLong

Helper.timestampFromLong介绍

[英]Answer a Time from a long
[中]从长计议

代码示例

代码示例来源:origin: org.eclipse.persistence/org.eclipse.persistence.core

/**
 * Answer a Time from a long
 *
 * @param millis - milliseconds from the epoch (00:00:00 GMT
 * Jan 1, 1970).  Negative values represent dates prior to the epoch.
 */
public static java.sql.Timestamp timestampFromLong(Long millis) {
  return timestampFromLong(millis.longValue());
}

代码示例来源:origin: org.eclipse.persistence/org.eclipse.persistence.core

/**
 * Answer a Timestamp from a java.util.Date.
 */
public static java.sql.Timestamp timestampFromDate(java.util.Date date) {
  return timestampFromLong(date.getTime());
}

代码示例来源:origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence

/**
 * Answer a Timestamp from a Calendar.
 */
public static java.sql.Timestamp timestampFromCalendar(Calendar calendar) {
  return timestampFromLong(calendar.getTimeInMillis());
}

代码示例来源:origin: com.haulmont.thirdparty/eclipselink

/**
 * Answer a Time from a long
 *
 * @param longObject - milliseconds from the epoch (00:00:00 GMT
 * Jan 1, 1970).  Negative values represent dates prior to the epoch.
 */
public static java.sql.Timestamp timestampFromLong(Long millis) {
  return timestampFromLong(millis.longValue());
}

代码示例来源:origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence

/**
 * Answer a Time from a long
 *
 * @param longObject - milliseconds from the epoch (00:00:00 GMT
 * Jan 1, 1970).  Negative values represent dates prior to the epoch.
 */
public static java.sql.Timestamp timestampFromLong(Long millis) {
  return timestampFromLong(millis.longValue());
}

代码示例来源:origin: org.eclipse.persistence/org.eclipse.persistence.core

/**
 * Answer a Timestamp from a Calendar.
 */
public static java.sql.Timestamp timestampFromCalendar(Calendar calendar) {
  return timestampFromLong(calendar.getTimeInMillis());
}

代码示例来源:origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence

/**
 * Answer a Timestamp from a java.util.Date.
 */
public static java.sql.Timestamp timestampFromDate(java.util.Date date) {
  return timestampFromLong(date.getTime());
}

代码示例来源:origin: com.haulmont.thirdparty/eclipselink

/**
 * Answer a Timestamp from a Calendar.
 */
public static java.sql.Timestamp timestampFromCalendar(Calendar calendar) {
  return timestampFromLong(calendar.getTimeInMillis());
}

代码示例来源:origin: com.haulmont.thirdparty/eclipselink

/**
 * Answer a Timestamp from a java.util.Date.
 */
public static java.sql.Timestamp timestampFromDate(java.util.Date date) {
  return timestampFromLong(date.getTime());
}

代码示例来源:origin: com.haulmont.thirdparty/eclipselink

/**
 * INTERNAL:
 * Build a valid instance of java.sql.Timestamp from the given source object.
 * @param sourceObject    Valid obejct of class java.sql.Timestamp, String, java.util.Date, or Long
 */
protected java.sql.Timestamp convertObjectToTimestamp(Object sourceObject) throws ConversionException {
  java.sql.Timestamp timestamp = null;
  if (sourceObject instanceof java.sql.Timestamp) {
    return (java.sql.Timestamp)sourceObject;// Helper timestamp is not caught on class check.
  }
  if (sourceObject instanceof String) {
    timestamp = Helper.timestampFromString((String)sourceObject);
  } else if (sourceObject instanceof java.util.Date) {// This handles all date and subclasses, sql.Date, sql.Time conversions.
    timestamp = Helper.timestampFromDate((java.util.Date)sourceObject);
  } else if (sourceObject instanceof Calendar) {
    return Helper.timestampFromCalendar((Calendar)sourceObject);
  } else if (sourceObject instanceof Long) {
    timestamp = Helper.timestampFromLong((Long)sourceObject);
  } else {
    throw ConversionException.couldNotBeConverted(sourceObject, ClassConstants.TIMESTAMP);
  }
  return timestamp;
}

代码示例来源:origin: org.eclipse.persistence/org.eclipse.persistence.core

/**
 * INTERNAL:
 * Build a valid instance of java.sql.Timestamp from the given source object.
 * @param sourceObject    Valid object of class java.sql.Timestamp, String, java.util.Date, or Long
 */
protected java.sql.Timestamp convertObjectToTimestamp(Object sourceObject) throws ConversionException {
  java.sql.Timestamp timestamp = null;
  if (sourceObject instanceof java.sql.Timestamp) {
    return (java.sql.Timestamp)sourceObject;// Helper timestamp is not caught on class check.
  }
  if (sourceObject instanceof String) {
    timestamp = Helper.timestampFromString((String)sourceObject);
  } else if (sourceObject instanceof java.util.Date) {// This handles all date and subclasses, sql.Date, sql.Time conversions.
    timestamp = Helper.timestampFromDate((java.util.Date)sourceObject);
  } else if (sourceObject instanceof Calendar) {
    return Helper.timestampFromCalendar((Calendar)sourceObject);
  } else if (sourceObject instanceof Long) {
    timestamp = Helper.timestampFromLong((Long)sourceObject);
  } else {
    throw ConversionException.couldNotBeConverted(sourceObject, ClassConstants.TIMESTAMP);
  }
  return timestamp;
}

代码示例来源:origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence

/**
 * INTERNAL:
 * Build a valid instance of java.sql.Timestamp from the given source object.
 * @param sourceObject    Valid obejct of class java.sql.Timestamp, String, java.util.Date, or Long
 */
protected java.sql.Timestamp convertObjectToTimestamp(Object sourceObject) throws ConversionException {
  java.sql.Timestamp timestamp = null;
  if (sourceObject instanceof java.sql.Timestamp) {
    return (java.sql.Timestamp)sourceObject;// Helper timestamp is not caught on class check.
  }
  if (sourceObject instanceof String) {
    timestamp = Helper.timestampFromString((String)sourceObject);
  } else if (sourceObject instanceof java.util.Date) {// This handles all date and subclasses, sql.Date, sql.Time conversions.
    timestamp = Helper.timestampFromDate((java.util.Date)sourceObject);
  } else if (sourceObject instanceof Calendar) {
    return Helper.timestampFromCalendar((Calendar)sourceObject);
  } else if (sourceObject instanceof Long) {
    timestamp = Helper.timestampFromLong((Long)sourceObject);
  } else {
    throw ConversionException.couldNotBeConverted(sourceObject, ClassConstants.TIMESTAMP);
  }
  return timestamp;
}

相关文章

Helper类方法