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

com.alachisoft.ncache.client.internal.util.IndexHelper Maven / Gradle / Ivy

There is a newer version: 5.3.0
Show newest version
package com.alachisoft.ncache.client.internal.util;



public class IndexHelper
{
    public static boolean isIndexable(java.lang.Class type)
    {
        return (type.isPrimitive() || type.equals(String.class) || type.equals(java.util.Date.class)
                || type.equals(java.math.BigDecimal.class)|| type.equals(Integer.class)
                || type.equals(Boolean.class)|| type.equals(Long.class)
                || type.equals(Short.class)|| type.equals(Double.class)
                || type.equals(Byte.class)
                || type.equals(Float.class))|| type.equals(Character.class);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy