Java SQL Time isDateTime(int type)

Here you can find the source of isDateTime(int type)

Description

is Date Time

License

Apache License

Declaration

public static boolean isDateTime(int type) 

Method Source Code

//package com.java2s;
//License from project: Apache License 

import java.sql.Types;

public class Main {
    public static boolean isDateTime(int type) {
        if (type == Types.DATE) {
            return true;
        } else {/*from  w  ww .  java2 s.  c o m*/
            return false;
        }
    }
}

Related

  1. getSQLDate(long datetime)
  2. getSQLDateTime()
  3. getZeroTimeDate(Date fecha)
  4. isBetweenHours(Time hora, Time horaInicio, Time horaFim)
  5. isCategoryDateOrTime(String sJavaType)
  6. isDateTime(String val)
  7. isTime(final Class type)
  8. isTime(final PropertyDescriptor pd)
  9. isTime(String val)