use of org.jnosql.artemis.reflection.ClassRepresentation in project jnosql-artemis by eclipse.
the class DefaultDocumentQueryMapperBuilder method deleteFrom.
@Override
public <T> DocumentDeleteFrom deleteFrom(Class<T> entityClass) {
requireNonNull(entityClass, "entity is required");
ClassRepresentation representation = classRepresentations.get().get(entityClass);
return new DefaultDocumentMapperDeleteBuilder(representation, converters.get());
}
use of org.jnosql.artemis.reflection.ClassRepresentation in project jnosql-artemis by eclipse.
the class DefaultDocumentQueryMapperBuilder method selectFrom.
@Override
public <T> DocumentFrom selectFrom(Class<T> entityClass) {
requireNonNull(entityClass, "entity is required");
ClassRepresentation representation = classRepresentations.get().get(entityClass);
return new DefaultDocumentMapperSelectBuilder(representation, converters.get());
}
use of org.jnosql.artemis.reflection.ClassRepresentation in project jnosql-artemis by eclipse.
the class ConverterUtil method getValue.
public static Object getValue(Object value, ClassRepresentation representation, String name, Converters converters) {
Optional<FieldRepresentation> fieldOptional = representation.getFieldRepresentation(name);
if (fieldOptional.isPresent()) {
FieldRepresentation field = fieldOptional.get();
Field nativeField = field.getNativeField();
if (!nativeField.getType().equals(value.getClass())) {
return field.getConverter().map(converters::get).map(a -> a.convertToDatabaseColumn(value)).orElseGet(() -> Value.of(value).get(nativeField.getType()));
}
return field.getConverter().map(converters::get).map(a -> a.convertToDatabaseColumn(value)).orElse(value);
}
return value;
}
use of org.jnosql.artemis.reflection.ClassRepresentation in project jnosql-artemis by eclipse.
the class AbstractColumnTemplateAsync method find.
@Override
public <T, ID> void find(Class<T> entityClass, ID id, Consumer<Optional<T>> callBack) {
requireNonNull(entityClass, "entityClass is required");
requireNonNull(id, "id is required");
requireNonNull(callBack, "callBack is required");
ClassRepresentation classRepresentation = getClassRepresentations().get(entityClass);
FieldRepresentation idField = classRepresentation.getId().orElseThrow(() -> IdNotFoundException.newInstance(entityClass));
Object value = ConverterUtil.getValue(id, classRepresentation, idField.getFieldName(), getConverters());
ColumnQuery query = ColumnQueryBuilder.select().from(classRepresentation.getName()).where(idField.getName()).eq(value).build();
singleResult(query, callBack);
}
use of org.jnosql.artemis.reflection.ClassRepresentation in project jnosql-artemis by eclipse.
the class AbstractColumnEntityConverter method toEntity.
@Override
public <T> T toEntity(T entityInstance, ColumnEntity entity) {
requireNonNull(entity, "entity is required");
requireNonNull(entityInstance, "entityInstance is required");
ClassRepresentation representation = getClassRepresentations().get(entityInstance.getClass());
return convertEntity(entity.getColumns(), representation, entityInstance);
}
Aggregations