Check Base Data Type - Android java.lang.reflect

Android examples for java.lang.reflect:Base Type

Description

Check Base Data Type

Demo Code

/*//from ww w  .j  a v  a  2 s .c  o 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.
 */
//package com.java2s;
import java.lang.reflect.Field;
import java.util.Date;

public class Main {

    public static boolean isBaseDataType(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 Tutorials