com.alachisoft.ncache.client.internal.util.IndexHelper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ncache-professional-client Show documentation
Show all versions of ncache-professional-client Show documentation
NCache Professional client for java.
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);
}
}