All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.pinot.client.utils.DateTimeUtils Maven / Gradle / Ivy

There is a newer version: 2024.03.7
Show newest version
/**
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 *
 *   http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.
 */
package org.apache.pinot.client.utils;

import java.sql.Date;
import java.sql.Time;
import java.sql.Timestamp;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Calendar;


public class DateTimeUtils {
  private static final String TIMESTAMP_FORMAT = "yyyy-MM-dd HH:mm:ss";
  private static final String DATE_FORMAT = "yyyy-MM-dd";
  private static final SimpleDateFormat _dateFormat = new SimpleDateFormat(DATE_FORMAT);
  private static final SimpleDateFormat _timestampFormat = new SimpleDateFormat(TIMESTAMP_FORMAT);

  public static Date getDateFromString(String value, Calendar cal)
      throws ParseException {
    _dateFormat.setTimeZone(cal.getTimeZone());
    java.util.Date date = _dateFormat.parse(value);
    Date sqlDate = new Date(date.getTime());
    return sqlDate;
  }

  public static Time getTimeFromString(String value, Calendar cal)
      throws ParseException {
    _timestampFormat.setTimeZone(cal.getTimeZone());
    java.util.Date date = _timestampFormat.parse(value);
    Time sqlTime = new Time(date.getTime());
    return sqlTime;
  }

  public static Timestamp getTimestampFromString(String value, Calendar cal)
      throws ParseException {
    _timestampFormat.setTimeZone(cal.getTimeZone());
    java.util.Date date = _timestampFormat.parse(value);
    Timestamp sqlTime = new Timestamp(date.getTime());
    return sqlTime;
  }

  public static Timestamp getTimestampFromLong(Long value) {
    Timestamp sqlTime = new Timestamp(value);
    return sqlTime;
  }

  public static String dateToString(Date date) {
    return _dateFormat.format(date.getTime());
  }

  public static String timeToString(Time time) {
    return _timestampFormat.format(time.getTime());
  }

  public static String timeStampToString(Timestamp timestamp) {
    return _timestampFormat.format(timestamp.getTime());
  }

  public static long timeStampToLong(Timestamp timestamp) {
    return timestamp.getTime();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy