Uses of Interface
io.vertigo.datamodel.structure.model.DtObject
-
Packages that use DtObject Package Description io.vertigo.datamodel.criteria io.vertigo.datamodel.structure.definitions io.vertigo.datamodel.structure.model io.vertigo.datamodel.structure.util -
-
Uses of DtObject in io.vertigo.datamodel.criteria
Classes in io.vertigo.datamodel.criteria with type parameters of type DtObject Modifier and Type Class Description classCriteria<D extends DtObject>A criteria to filter a list.classCriterionLimit<E extends DtObject>Defines a limit/boundary.Methods in io.vertigo.datamodel.criteria with type parameters of type DtObject Modifier and Type Method Description static <D extends DtObject>
Criteria<D>Criterions. alwaysFalse()An always false criteria.static <D extends DtObject>
Criteria<D>Criterions. alwaysTrue()An always true criteria.static <D extends DtObject>
Criteria<D>Criterions. in(DtFieldName<D> dtFieldName, Serializable... values)static <D extends DtObject>
Criteria<D>Criterions. isBetween(DtFieldName<D> dtFieldName, CriterionLimit<D> min, CriterionLimit<D> max)static <D extends DtObject>
Criteria<D>Criterions. isEqualTo(DtFieldName<D> dtFieldName, Serializable value)static <D extends DtObject>
Criteria<D>Criterions. isGreaterThan(DtFieldName<D> dtFieldName, Serializable value)static <D extends DtObject>
Criteria<D>Criterions. isGreaterThanOrEqualTo(DtFieldName<D> dtFieldName, Serializable value)static <D extends DtObject>
Criteria<D>Criterions. isLessThan(DtFieldName<D> dtFieldName, Serializable value)static <D extends DtObject>
Criteria<D>Criterions. isLessThanOrEqualTo(DtFieldName<D> dtFieldName, Serializable value)static <D extends DtObject>
Criteria<D>Criterions. isNotEqualTo(DtFieldName<D> dtFieldName, Serializable value)static <D extends DtObject>
Criteria<D>Criterions. isNotNull(DtFieldName<D> dtFieldName)static <D extends DtObject>
Criteria<D>Criterions. isNull(DtFieldName<D> dtFieldName)static <D extends DtObject>
Criteria<D>Criterions. startsWith(DtFieldName<D> dtFieldName, String value) -
Uses of DtObject in io.vertigo.datamodel.structure.definitions
Classes in io.vertigo.datamodel.structure.definitions with type parameters of type DtObject Modifier and Type Interface Description interfaceDtFieldName<D extends DtObject>Nom de champs de DT (marqueur).Methods in io.vertigo.datamodel.structure.definitions with parameters of type DtObject Modifier and Type Method Description ObjectDataAccessor. getValue(DtObject dto)Getter générique.voidDataAccessor. setValue(DtObject dto, Object value)Setter Générique. -
Uses of DtObject in io.vertigo.datamodel.structure.model
Classes in io.vertigo.datamodel.structure.model with type parameters of type DtObject Modifier and Type Class Description classDtList<D extends DtObject>Classe de stockage des listes.Subinterfaces of DtObject in io.vertigo.datamodel.structure.model Modifier and Type Interface Description interfaceDtMasterDataInterface to have a marker on all MasterData object.interfaceDtStaticMasterDataInterface to have a marker on all static MasterData object.interfaceEntityAn entity placed in a domain model.interfaceFragment<E extends Entity>Fragment of an entity.interfaceKeyConceptInterface to have a marker on all KeyConcept object (properly Main Business Object).Methods in io.vertigo.datamodel.structure.model with type parameters of type DtObject Modifier and Type Method Description static <D extends DtObject>
DtList<D>DtList. of(D dto, D... dtos)Static method factory for convenient creation of DtList using 'of' pattern.static <D extends DtObject>
DtList<D>DtList. of(D dto, List<D> dtos)Static method factory for convenient creation of DtList using 'of' pattern.Methods in io.vertigo.datamodel.structure.model with parameters of type DtObject Modifier and Type Method Description static <D extends DtObject>
DtList<D>DtList. of(D dto, D... dtos)Static method factory for convenient creation of DtList using 'of' pattern.Constructor parameters in io.vertigo.datamodel.structure.model with type arguments of type DtObject Constructor Description DtList(Class<? extends DtObject> dtObjectClass)Constructor. -
Uses of DtObject in io.vertigo.datamodel.structure.util
Methods in io.vertigo.datamodel.structure.util with type parameters of type DtObject Modifier and Type Method Description static <T extends DtObject>
Collector<T,?,DtList<T>>VCollectors. toDtList(DtDefinition dtDefinition)static <T extends DtObject>
Collector<T,?,DtList<T>>VCollectors. toDtList(Class<T> dtClass)Methods in io.vertigo.datamodel.structure.util that return DtObject Modifier and Type Method Description static DtObjectDtObjectUtil. createDtObject(DtDefinition dtDefinition)Creates a new instance of 'DtObject' from a 'DtDefinition'.Methods in io.vertigo.datamodel.structure.util with parameters of type DtObject Modifier and Type Method Description static intDtObjectUtil. compareFieldValues(DtObject dtoObject1, DtObject dtoObject2, DtField dtField, boolean sortDesc)Compare values.static <E extends Entity>
UID<E>DtObjectUtil. createUID(DtObject dto, String associationDefinitionName, Class<E> dtoTargetClass)Récupération d'une UID de DTO.static DtDefinitionDtObjectUtil. findDtDefinition(DtObject dto)Finds the definition to which the specified 'DtObject' is mapped.static StringDtObjectUtil. toString(DtObject dto)Représentation sous forme text d'un dtObject.Method parameters in io.vertigo.datamodel.structure.util with type arguments of type DtObject Modifier and Type Method Description static DtDefinitionDtObjectUtil. findDtDefinition(Class<? extends DtObject> dtObjectClass)Finds the definition from a type of 'DtObject'
-