Android Field Get isBaseDateType(Field field)

Here you can find the source of isBaseDateType(Field field)

Description

is Base Date Type

License

Apache License

Declaration

public static boolean isBaseDateType(Field field) 

Method Source Code

//package com.java2s;
/*/*from ww w  .  ja  va2 s  .  co  m*/
 * Copyright (C) 2013  WhiteCat ?? (www.thinkandroid.cn)
 *
 * Licensed 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.
 */

import java.lang.reflect.Field;

import java.util.Date;

public class Main {

    public static boolean isBaseDateType(Field field) {
        Class<?> clazz = field.getType();
        return clazz.equals(String.class) || clazz.equals(Integer.class)
                || clazz.equals(Byte.class) || clazz.equals(Long.class)
                || clazz.equals(Double.class) || clazz.equals(Float.class)
                || clazz.equals(Character.class)
                || clazz.equals(Short.class) || clazz.equals(Boolean.class)
                || clazz.equals(Date.class)
                || clazz.equals(java.util.Date.class)
                || clazz.equals(java.sql.Date.class) || clazz.isPrimitive();
    }
}

Related

  1. getPrivateField(Object target, String fieldName, Class type)
  2. getAllFields(List fields, Class type)
  3. getSuperPrivateField(Object target, String fieldName)
  4. getAdditionalInstanceField(Object obj, String key)
  5. getAdditionalStaticField(Object obj, String key)