public static boolean isSimpleType()

in hugegraph-common/src/main/java/org/apache/hugegraph/util/ReflectionUtil.java [39:45]


    public static boolean isSimpleType(Class<?> type) {
        return type.isPrimitive() ||
               type.equals(String.class) ||
               type.equals(Boolean.class) ||
               type.equals(Character.class) ||
               NumericUtil.isNumber(type);
    }